We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f1ad1a commit 4ba1ac1Copy full SHA for 4ba1ac1
apps/st2-actions/actions-panel.component.js
@@ -55,7 +55,6 @@ import './style.css';
55
return { collapsed, ...props };
56
}, (dispatch, props) => {
57
const { uid } = props;
58
-
59
return {
60
onToggle: () => store.dispatch(flexActions.toggle(uid)),
61
};
@@ -219,6 +218,8 @@ export default class ActionsPanel extends React.Component {
219
218
})
220
.then((res) => {
221
notification.success(`Action "${ref}" has been deleted successfully.`);
+ this.navigate({ id: null });
222
+ store.dispatch(flexActions.toggleAll());
223
return res;
224
225
.catch((err) => {
0 commit comments