From 8fe63d0e364e7c7b271cada56ed93b4f08332e1b Mon Sep 17 00:00:00 2001 From: "Calum H. (IMB11)" Date: Fri, 31 Jul 2026 08:35:06 +0100 Subject: [PATCH] fix: content selection bar not showing in ModpackContentModal --- .../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 d2693db24b..88297594ab 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(() => {