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 8778c63 commit 51b9205Copy full SHA for 51b9205
‎client/packages/lowcoder/src/comps/comps/tableComp/tableSummaryComp.tsx
@@ -203,7 +203,7 @@ export const TableSummary = memo(function TableSummary(props: {
203
204
const visibleColumns = useMemo(() => {
205
let cols = columns.filter(col => !col.getView().hide);
206
- if (dynamicColumn) {
+ if (dynamicColumn && dynamicColumnConfig?.length) {
207
cols = cols.filter(col => {
208
const colView = col.getView();
209
return dynamicColumnConfig.includes(colView.isCustom ? colView.title : colView.dataIndex)
0 commit comments