Loading client/src/components/Libraries/LibraryFolder/LibraryFolder.vue +6 −1 Original line number Diff line number Diff line Loading @@ -450,7 +450,12 @@ export default { } }); return this.selected.length + unselectable === this.$refs.folder_content_table.computedItems.length; const numComputedItems = this.$refs.folder_content_table.computedItems.length; if (numComputedItems === 0 || numComputedItems === unselectable) { return false; } return this.selected.length + unselectable === numComputedItems; }, toggleSelect() { this.unselected = []; Loading client/src/components/Libraries/LibraryFolder/TopToolbar/FolderTopBar.vue +1 −1 Original line number Diff line number Diff line Loading @@ -203,7 +203,7 @@ export default { return this.folderContents.find((el) => el.type === "folder" || el.type === "file"); }, canDelete: function () { return !!(this.contains_file_or_folder && this.is_admin); return !!this.is_admin; }, dataset_manipulation: function () { const Galaxy = getGalaxyInstance(); Loading Loading
client/src/components/Libraries/LibraryFolder/LibraryFolder.vue +6 −1 Original line number Diff line number Diff line Loading @@ -450,7 +450,12 @@ export default { } }); return this.selected.length + unselectable === this.$refs.folder_content_table.computedItems.length; const numComputedItems = this.$refs.folder_content_table.computedItems.length; if (numComputedItems === 0 || numComputedItems === unselectable) { return false; } return this.selected.length + unselectable === numComputedItems; }, toggleSelect() { this.unselected = []; Loading
client/src/components/Libraries/LibraryFolder/TopToolbar/FolderTopBar.vue +1 −1 Original line number Diff line number Diff line Loading @@ -203,7 +203,7 @@ export default { return this.folderContents.find((el) => el.type === "folder" || el.type === "file"); }, canDelete: function () { return !!(this.contains_file_or_folder && this.is_admin); return !!this.is_admin; }, dataset_manipulation: function () { const Galaxy = getGalaxyInstance(); Loading