diff --git a/frontend/src/components/inputs/EntityForm.vue b/frontend/src/components/inputs/EntityForm.vue index 49b6e17..3f9919b 100644 --- a/frontend/src/components/inputs/EntityForm.vue +++ b/frontend/src/components/inputs/EntityForm.vue @@ -228,8 +228,6 @@ export default { body: this.editEntity }); this.loading = false; - updateEntityList(); - return response; }, async saveEntity() { @@ -244,6 +242,7 @@ export default { } if (response) { this.updatePendingRequests(); + updateEntityList(); } this.$emit("update"); },