From e23d64b9e0b64691ec64f0310bc75b0c907bec00 Mon Sep 17 00:00:00 2001 From: pradnya-orchestral <81607514+pradnya-orchestral@users.noreply.github.com> Date: Thu, 2 Dec 2021 18:02:57 +0530 Subject: [PATCH] Resolved issue to keep left pack menu of action list expanded after successful action deletion I have removed changes that pack menu gets collapsed after action delete and added changes to keep pack menu as expanded even after successful deletion of action, So that If user wants to delete more actions from same expanded pack there will no need to again open that pack menu --- apps/st2-actions/actions-panel.component.js | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/st2-actions/actions-panel.component.js b/apps/st2-actions/actions-panel.component.js index 557006517..b6d2beac0 100644 --- a/apps/st2-actions/actions-panel.component.js +++ b/apps/st2-actions/actions-panel.component.js @@ -222,7 +222,6 @@ export default class ActionsPanel extends React.Component { .then((res) => { notification.success(`Action "${ref}" has been deleted successfully.`); this.navigate({ id: null }); - store.dispatch(flexActions.toggleAll()); this.fetchGroups(); return res; })