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

Commit

Permalink
Change order
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Apr 12, 2022
1 parent b0d1b5a commit c3aaca8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/CollectionList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,6 @@ export default {
}
},

mounted() {
actions.fetchCollectionsByResource({
resourceType: this.type,
resourceId: this.id
})
},

watch: {
type() {
if (this.isActive) {
Expand Down Expand Up @@ -202,6 +195,13 @@ export default {
}
},

mounted() {
actions.fetchCollectionsByResource({
resourceType: this.type,
resourceId: this.id
})
},

methods: {
select(selectedOption, id) {
if (selectedOption.method === METHOD_CREATE_COLLECTION) {
Expand Down

0 comments on commit c3aaca8

Please sign in to comment.