Loading src/components/JamaItemsList.vue +2 −2 Original line number Diff line number Diff line Loading @@ -165,12 +165,12 @@ export default { this.$store.commit('addSelectedCollection', this.collections.find((c) => c.id === item.id)) } else{ this.$store.commit('removeSelectedCollection', this.resources.find((r) => r.id === item.id)) this.$store.commit('removeSelectedCollection', item.id) } } else{ if(checked){ this.$store.commit('addSelectedResource', item.id) this.$store.commit('addSelectedResource', this.resources.find((r) => r.id === item.id)) } else{ this.$store.commit('removeSelectedResource', item.id) Loading Loading
src/components/JamaItemsList.vue +2 −2 Original line number Diff line number Diff line Loading @@ -165,12 +165,12 @@ export default { this.$store.commit('addSelectedCollection', this.collections.find((c) => c.id === item.id)) } else{ this.$store.commit('removeSelectedCollection', this.resources.find((r) => r.id === item.id)) this.$store.commit('removeSelectedCollection', item.id) } } else{ if(checked){ this.$store.commit('addSelectedResource', item.id) this.$store.commit('addSelectedResource', this.resources.find((r) => r.id === item.id)) } else{ this.$store.commit('removeSelectedResource', item.id) Loading