Skip to content

Commit

Permalink
Merge branch 'release_24.1' into release_24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Dec 17, 2024
2 parents e921a29 + 1bf1d59 commit 614ecbb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -411,5 +411,6 @@ export default {
<style>
.modal-with-selector {
overflow: initial;
min-height: 300px; /* To make room for the selector */
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const props = defineProps<Props>();
library.add(faChartBar);
const label = computed(() => props.data.id);
const label = computed(() => props.data.label);
const viewDetailsIcon = computed(() => "chart-bar");
const emit = defineEmits<{
Expand Down
4 changes: 4 additions & 0 deletions client/src/style/scss/multiselect.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,7 @@
}
}
}

.multiselect--active {
z-index: 1500; // Should be on top of everything
}
2 changes: 1 addition & 1 deletion lib/galaxy/tool_util/deps/mulled/invfile.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ end

local conda_image = VAR.CONDA_IMAGE
if conda_image == '' then
conda_image = 'quay.io/condaforge/mambaforge:latest'
conda_image = 'quay.io/condaforge/miniforge3:latest'
end

local conda_bin = VAR.CONDA_BIN
Expand Down

0 comments on commit 614ecbb

Please sign in to comment.