diff --git a/ui/src/views/iam/DomainActionForm.vue b/ui/src/views/iam/DomainActionForm.vue index 1696d525810..6ada6b198c6 100644 --- a/ui/src/views/iam/DomainActionForm.vue +++ b/ui/src/views/iam/DomainActionForm.vue @@ -180,7 +180,7 @@ export default { this.fillEditFormFieldValues() } }, - inject: ['parentCloseAction', 'parentFetchData'], + inject: ['parentCloseAction', 'parentFetchData', 'parentForceRerender'], methods: { handleSubmit (e) { e.preventDefault() @@ -249,6 +249,7 @@ export default { successMethod: result => { if (this.action.api === 'deleteDomain') { this.parentFetchData() + this.parentForceRerender() } if (this.action.response) { const description = this.action.response(result.jobresult) diff --git a/ui/src/views/iam/DomainView.vue b/ui/src/views/iam/DomainView.vue index e69edc55ac1..6aefbcdeb49 100644 --- a/ui/src/views/iam/DomainView.vue +++ b/ui/src/views/iam/DomainView.vue @@ -60,6 +60,7 @@ :tabs="$route.meta.tabs" />