Thanks to visit codestin.com Credit goes to github.com
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 58be61e commit d55f4ceCopy full SHA for d55f4ce
‎client/packages/lowcoder/src/comps/comps/tableComp/tableCompView.tsx
@@ -1044,7 +1044,13 @@ export const TableCompView = React.memo((props: {
1044
}
1045
1046
if (antdColumns.length === 0) {
1047
- return <EmptyContent text={trans("table.emptyColumns")} />;
+ return (
1048
+ <div>
1049
+ {toolbar.position === "above" && !hideToolbar && toolbarView}
1050
+ <EmptyContent text={trans("table.emptyColumns")} />
1051
+ {toolbar.position === "below" && !hideToolbar && toolbarView}
1052
+ </div>
1053
+ );
1054
1055
1056
const hideScrollbar = !showHorizontalScrollbar && !showVerticalScrollbar;
0 commit comments