diff --git a/packages/frontend/src/components/global/SearchMarker.vue b/packages/frontend/src/components/global/SearchMarker.vue index 25734d7880..05852e77ad 100644 --- a/packages/frontend/src/components/global/SearchMarker.vue +++ b/packages/frontend/src/components/global/SearchMarker.vue @@ -13,7 +13,10 @@ SPDX-License-Identifier: AGPL-3.0-only import { onMounted, onUnmounted, ref, shallowRef } from 'vue'; const props = defineProps<{ - markerId: string; + markerId?: string; + label?: string; + icon?: string; + keywords?: string[]; children?: string[]; }>();