Skip to content
Snippets Groups Projects

Refactor facet autocomplete

Merged Remi PLANEL requested to merge refactor-facet-autocomplete into dev
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -474,13 +474,13 @@ async function downloadPng(component: ComponentPublicInstance | null, filename:
@@ -474,13 +474,13 @@ async function downloadPng(component: ComponentPublicInstance | null, filename:
</CollapsibleChips>
</CollapsibleChips>
</template>
</template>
<template #[`item.type`]="{ item }">
<template #[`item.type`]="{ item }">
<v-chip color="primary" variant="text" :to="`/defense-systems/${item.type.toLowerCase()}`" target="_blank"> {{
<v-chip color="info" link size="small" :to="`/defense-systems/${item.type.toLowerCase()}`" target="_blank"> {{
item.type }}
item.type }}
</v-chip>
</v-chip>
</template>
</template>
<template #[`item.subtype`]="{ item }">
<template #[`item.subtype`]="{ item }">
<v-chip color="primary" variant="text" :to="`/defense-systems/${item.type.toLowerCase()}`" target="_blank"> {{
<v-chip color="info" link size="small" :to="`/defense-systems/${item.type.toLowerCase()}`" target="_blank"> {{
item.subtype }}
item.subtype }}
</v-chip>
</v-chip>
</template>
</template>