Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Frontend: Fix not showing permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Apr 30, 2021
1 parent 5d96070 commit 827033b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/components/Collections/PermissionsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default {
}
},
mounted() {
this.refreshPermissions()
this.refreshView()
},
methods: {
/**
Expand Down Expand Up @@ -144,7 +144,7 @@ export default {
})
},
refreshPermissions() {
refreshView() {
if (!this.collection.id || !this.collection) {
return
}
Expand All @@ -161,11 +161,11 @@ export default {
},
watch: {
'collection.id': function () {
this.refreshPermissions()
this.refreshView()
},
'collection': function () {
this.refreshPermissions()
this.refreshView()
}
}
}
Expand Down

0 comments on commit 827033b

Please sign in to comment.