From 827033b0f73ab812457dfa375dec7d42b8af0915 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 30 Apr 2021 16:30:05 +0200 Subject: [PATCH] Frontend: Fix not showing permissions --- frontend/src/components/Collections/PermissionsList.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/Collections/PermissionsList.vue b/frontend/src/components/Collections/PermissionsList.vue index 5464bdc6..d8195134 100644 --- a/frontend/src/components/Collections/PermissionsList.vue +++ b/frontend/src/components/Collections/PermissionsList.vue @@ -53,7 +53,7 @@ export default { } }, mounted() { - this.refreshPermissions() + this.refreshView() }, methods: { /** @@ -144,7 +144,7 @@ export default { }) }, - refreshPermissions() { + refreshView() { if (!this.collection.id || !this.collection) { return } @@ -161,11 +161,11 @@ export default { }, watch: { 'collection.id': function () { - this.refreshPermissions() + this.refreshView() }, 'collection': function () { - this.refreshPermissions() + this.refreshView() } } }