Skip to content

Commit

Permalink
fix: 修复crud2 列选中问题
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangtao07 committed Jan 24, 2024
1 parent c50e200 commit 82bd6a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/amis-ui/src/components/table/Head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export default class Head extends React.PureComponent<Props> {
colIndex === data.length - 1
})}
depth={item.depth}
col={cIndex > -1 ? cIndex.toString() : undefined}
col={String(colIndex)}
>
{typeof item.title === 'function'
? item.title(children)
Expand Down

0 comments on commit 82bd6a3

Please sign in to comment.