Skip to content

Commit

Permalink
Merge branch 'release_24.1' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Oct 10, 2024
2 parents 0409898 + dd9ca09 commit 385a586
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ concurrency:
jobs:
test:
name: Test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_galaxy_packages_for_pulsar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
test:
name: Test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # Python 3.7 is not available via setup-python on ubuntu >=24.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Form/Elements/FormData/FormData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ function onBrowse() {
}
function canAcceptDatatype(itemDatatypes: string | Array<string>) {
if (!(props.extensions?.length > 0)) {
if (!(props.extensions?.length > 0) || props.extensions.includes("data")) {
return true;
}
let datatypes: Array<string>;
Expand Down

0 comments on commit 385a586

Please sign in to comment.