* [bug#63538,done,0.2h] fix bug.

This commit is contained in:
sunguangming
2025-06-25 07:40:39 +00:00
parent 0b7b0b360c
commit cb1c5187a2
+13 -9
View File
@@ -86,15 +86,19 @@ window.getColActions = function(col)
}
}
actionList.push(
{
type: 'dropdown',
icon: 'ellipsis-v',
caret: false,
items: buildColActions(col),
class: 'actionDrop'
}
);
const colActions = buildColActions(col);
if(colActions.length)
{
actionList.push(
{
type: 'dropdown',
icon: 'ellipsis-v',
caret: false,
items: colActions,
class: 'actionDrop'
}
);
}
return actionList;
}