* [bug#63538,done,0.2h] fix bug.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user