Loading src/components/CollectionsTree.vue +7 −1 Original line number Diff line number Diff line Loading @@ -70,7 +70,13 @@ export default { // eslint-disable-next-line no-empty catch(e){} } } }, // collections(){ // const target = document.querySelector('#tree-item-' + this.currentCollection.id) // .parentElement.parentElement; // target.click(); // } }, methods: { async collectionClicked(c){ Loading src/components/JamaResourceTile.vue +3 −2 Original line number Diff line number Diff line Loading @@ -46,10 +46,11 @@ export default { computed: { active() { return this.resource == this.currentResource return this.resource.id == this.currentResource.id }, inactive() { return this.currentResource && this.resource !== this.currentResource return this.currentResource && this.resource.id !== this.currentResource.id }, label() { return this.resource.title.length > this.titleLimit Loading src/components/VueJama.vue +1 −1 Original line number Diff line number Diff line Loading @@ -359,7 +359,7 @@ export default { return this.viewMode === FULLSCREEN }, sidePaneVisible() { return !this.hiddenRightPanel && this.currentCollection && this.currentCollection.parent return (!this.hiddenRightPanel && this.currentCollection && this.currentCollection.parent) || this.currentResource }, pluginComponent() { Loading Loading
src/components/CollectionsTree.vue +7 −1 Original line number Diff line number Diff line Loading @@ -70,7 +70,13 @@ export default { // eslint-disable-next-line no-empty catch(e){} } } }, // collections(){ // const target = document.querySelector('#tree-item-' + this.currentCollection.id) // .parentElement.parentElement; // target.click(); // } }, methods: { async collectionClicked(c){ Loading
src/components/JamaResourceTile.vue +3 −2 Original line number Diff line number Diff line Loading @@ -46,10 +46,11 @@ export default { computed: { active() { return this.resource == this.currentResource return this.resource.id == this.currentResource.id }, inactive() { return this.currentResource && this.resource !== this.currentResource return this.currentResource && this.resource.id !== this.currentResource.id }, label() { return this.resource.title.length > this.titleLimit Loading
src/components/VueJama.vue +1 −1 Original line number Diff line number Diff line Loading @@ -359,7 +359,7 @@ export default { return this.viewMode === FULLSCREEN }, sidePaneVisible() { return !this.hiddenRightPanel && this.currentCollection && this.currentCollection.parent return (!this.hiddenRightPanel && this.currentCollection && this.currentCollection.parent) || this.currentResource }, pluginComponent() { Loading