Merge branch dev/bug-63538 of zentao/zentaopms (#9923)

This commit is contained in:
刘刚
2025-06-25 16:53:30 +08:00
committed by Gitfox
+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;
}