From 36857a167b6ff73a4f84fe08fc9ebf5e369b1a3e Mon Sep 17 00:00:00 2001 From: "Calum H." Date: Tue, 4 Aug 2026 22:24:43 +0100 Subject: [PATCH] fix: content selection bar not showing in ModpackContentModal (#6950) --- .../shared/content-tab/components/ContentSelectionBar.vue | 8 +++++++- .../content-tab/components/modals/ModpackContentModal.vue | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/ui/src/layouts/shared/content-tab/components/ContentSelectionBar.vue b/packages/ui/src/layouts/shared/content-tab/components/ContentSelectionBar.vue index 312ec5ec2c..bf2ec3f9c8 100644 --- a/packages/ui/src/layouts/shared/content-tab/components/ContentSelectionBar.vue +++ b/packages/ui/src/layouts/shared/content-tab/components/ContentSelectionBar.vue @@ -95,6 +95,7 @@ interface Props { ariaLabel?: string getItemId?: (item: ContentItem) => string toggleItems?: ContentItem[] + hideWhenModalOpen?: boolean } const props = withDefaults(defineProps(), { @@ -111,6 +112,7 @@ const props = withDefaults(defineProps(), { ariaLabel: undefined, getItemId: undefined, toggleItems: undefined, + hideWhenModalOpen: true, }) const emit = defineEmits<{ @@ -181,7 +183,11 @@ const bulkProgressMessage = computed(() => {