Skip to content

Commit cc9af45

Browse files
remove double shadow from table toolbar popups
1 parent 86d0f29 commit cc9af45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/packages/lowcoder/src/comps/comps/tableComp/tableToolbarComp.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ function ColumnSetting(props: {
609609
allChecked = false;
610610
}
611611
return (
612-
<ColumnCheckItem>
612+
<ColumnCheckItem key={columnView.dataIndex}>
613613
<CheckBox
614614
checked={checked}
615615
onChange={(e) => {
@@ -677,6 +677,7 @@ function ToolbarPopover(props: {
677677
<Popover
678678
open={visible}
679679
overlayStyle={{ pointerEvents: "auto" }}
680+
overlayInnerStyle={{ padding: '0' }}
680681
content={
681682
<div
682683
ref={popOverRef}

0 commit comments

Comments
 (0)