From 02ea301d5dcc30b42f889b3ae88641a37d06fdd0 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Tue, 28 May 2024 12:00:21 +0530 Subject: [PATCH] fix: remove labeled group actions from grouped actions --- frontend/src/components/CustomActions.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 })