We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86d0f29 commit cc9af45Copy full SHA for cc9af45
client/packages/lowcoder/src/comps/comps/tableComp/tableToolbarComp.tsx
@@ -609,7 +609,7 @@ function ColumnSetting(props: {
609
allChecked = false;
610
}
611
return (
612
- <ColumnCheckItem>
+ <ColumnCheckItem key={columnView.dataIndex}>
613
<CheckBox
614
checked={checked}
615
onChange={(e) => {
@@ -677,6 +677,7 @@ function ToolbarPopover(props: {
677
<Popover
678
open={visible}
679
overlayStyle={{ pointerEvents: "auto" }}
680
+ overlayInnerStyle={{ padding: '0' }}
681
content={
682
<div
683
ref={popOverRef}
0 commit comments