diff --git a/ui/src/views/AutogenView.vue b/ui/src/views/AutogenView.vue
index 64378489a04..89426f9b82d 100644
--- a/ui/src/views/AutogenView.vue
+++ b/ui/src/views/AutogenView.vue
@@ -404,6 +404,10 @@ export default {
closeAction () {
this.currentAction.loading = false
this.showAction = false
+ if (this.currentAction.icon === 'delete') {
+ this.currentAction = {}
+ this.$router.go(-1)
+ }
this.currentAction = {}
},
execAction (action) {
diff --git a/ui/src/views/common/InfoCard.vue b/ui/src/views/common/InfoCard.vue
index 50529e72fcd..355d5a83120 100644
--- a/ui/src/views/common/InfoCard.vue
+++ b/ui/src/views/common/InfoCard.vue
@@ -28,6 +28,9 @@