diff --git a/client/src/components/History/CurrentHistory/HistoryOperations/SelectionOperations.vue b/client/src/components/History/CurrentHistory/HistoryOperations/SelectionOperations.vue
index 5463baab1b59..d36a3fb0d59d 100644
--- a/client/src/components/History/CurrentHistory/HistoryOperations/SelectionOperations.vue
+++ b/client/src/components/History/CurrentHistory/HistoryOperations/SelectionOperations.vue
@@ -411,5 +411,6 @@ export default {
diff --git a/client/src/components/User/DiskUsage/Visualizations/ObjectStoreActions.vue b/client/src/components/User/DiskUsage/Visualizations/ObjectStoreActions.vue
index 2f28f1fcba8b..55d7a7c70d75 100644
--- a/client/src/components/User/DiskUsage/Visualizations/ObjectStoreActions.vue
+++ b/client/src/components/User/DiskUsage/Visualizations/ObjectStoreActions.vue
@@ -17,7 +17,7 @@ const props = defineProps();
library.add(faChartBar);
-const label = computed(() => props.data.id);
+const label = computed(() => props.data.label);
const viewDetailsIcon = computed(() => "chart-bar");
const emit = defineEmits<{
diff --git a/client/src/style/scss/multiselect.scss b/client/src/style/scss/multiselect.scss
index 05b4b3961220..55b70ab4f24c 100644
--- a/client/src/style/scss/multiselect.scss
+++ b/client/src/style/scss/multiselect.scss
@@ -95,3 +95,7 @@
}
}
}
+
+.multiselect--active {
+ z-index: 1500; // Should be on top of everything
+}
diff --git a/lib/galaxy/tool_util/deps/mulled/invfile.lua b/lib/galaxy/tool_util/deps/mulled/invfile.lua
index 38ddc860cc3b..f7bef84d18b5 100644
--- a/lib/galaxy/tool_util/deps/mulled/invfile.lua
+++ b/lib/galaxy/tool_util/deps/mulled/invfile.lua
@@ -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