diff --git a/app/components/page/CatalogPage.vue b/app/components/page/CatalogPage.vue index c603b31..cac5093 100644 --- a/app/components/page/CatalogPage.vue +++ b/app/components/page/CatalogPage.vue @@ -185,8 +185,8 @@ import type { MapBounds } from '~/components/catalog/CatalogMap.vue' const { mapViewMode, setMapViewMode, selectMode, startSelect, cancelSelect } = useCatalogSearch() -// Panel is open when selectMode is set -const isPanelOpen = computed(() => selectMode.value !== null) +// Panel is open when selectMode is set OR when showPanel prop is true (info/quote) +const isPanelOpen = computed(() => props.showPanel || selectMode.value !== null) // Open panel based on current mapViewMode const openPanel = () => {