Unverified Commit a14e006f authored by mvdbeek's avatar mvdbeek
Browse files

Merge branch 'release_24.2' into dev

parents c7cce095 3992f0f2
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -454,7 +454,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 = [];
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ const containsFileOrFolder = computed(() => {
    return props.folderContents.find((el) => el.type === "folder" || el.type === "file");
});
const canDelete = computed(() => {
    return !!(containsFileOrFolder.value && props.metadata.can_modify_folder);
    return !!props.metadata.can_modify_folder;
});
const datasetManipulation = computed(() => {
    return !!(containsFileOrFolder.value && userStore.currentUser);
+6 −1
Original line number Diff line number Diff line
@@ -542,6 +542,12 @@ After that, run the upgrade script: `./manage_db.sh upgrade`. And you're done!

## Troubleshooting

### Deadlock detected

If you see a deadlock error, that may have been caused by a migration script requiring exclusive access
to a database object, such as a row or a table. To avoid this error, it is recommended to shut down
all Galaxy processes during database migration.

### How to handle migrations.IncorrectVersionError

If you see this error, you'll need to upgrade or downgrade your database *before* upgrading to
@@ -552,4 +558,3 @@ is 181. Please see [this issue](https://github.com/galaxyproject/galaxy/issues/1

#### Please help us improve this page:
If you encounter any migration-related errors or issues, please [open an issue](https://github.com/galaxyproject/galaxy/issues/new?assignees=&labels=&template=bug_report.md&title=), and we will add the solution with any relevant context to this page.
+1047 −0

File added.

Preview size limit exceeded, changes collapsed.

+354 −5

File changed.

Preview size limit exceeded, changes collapsed.

Loading