diff --git a/app/components/catalog/InfoPanel.vue b/app/components/catalog/InfoPanel.vue index da5a520..0cef088 100644 --- a/app/components/catalog/InfoPanel.vue +++ b/app/components/catalog/InfoPanel.vue @@ -116,13 +116,6 @@ :key="product.uuid ?? index" class="relative group" > - - - - - - @@ -326,8 +293,6 @@ const props = defineProps<{ const emit = defineEmits<{ 'close': [] - 'add-to-filter': [] - 'pin': [type: 'product' | 'supplier' | 'hub', item: { uuid?: string | null; name?: string | null }] 'open-info': [type: InfoEntityType, uuid: string] 'select-product': [uuid: string | null] 'select-offer': [offer: { uuid: string; productUuid?: string | null }] diff --git a/app/components/catalog/SelectionPanel.vue b/app/components/catalog/SelectionPanel.vue index 2016d50..4dd6a28 100644 --- a/app/components/catalog/SelectionPanel.vue +++ b/app/components/catalog/SelectionPanel.vue @@ -31,13 +31,6 @@ @mouseenter="emit('hover', item.uuid ?? null)" @mouseleave="emit('hover', null)" > - - - { emit('select', props.selectMode, item) } } - -const onPin = (item: Item) => { - if (props.selectMode && item.uuid) { - emit('pin', props.selectMode, item) - } -} diff --git a/app/components/page/CatalogPage.vue b/app/components/page/CatalogPage.vue index 6a9eaf4..9801721 100644 --- a/app/components/page/CatalogPage.vue +++ b/app/components/page/CatalogPage.vue @@ -71,6 +71,7 @@