diff --git a/frontend/src/components/CustomActions.vue b/frontend/src/components/CustomActions.vue index 5bfc79fb..fc6c85e5 100644 --- a/frontend/src/components/CustomActions.vue +++ b/frontend/src/components/CustomActions.vue @@ -55,7 +55,9 @@ const groupedActions = computed(() => { })), }) } - _actions = _actions.concat(props.actions.filter((action) => action.group)) + _actions = _actions.concat( + props.actions.filter((action) => action.group && !action.buttonLabel) + ) return _actions })