allow description to be html instead of plain text

This commit is contained in:
Harald Bamberger
2025-05-28 17:29:54 +02:00
parent 9d48b6ac57
commit cb1f6e2e5f
+1 -1
View File
@@ -664,7 +664,7 @@ export const CoreFilterCmpt = {
</div>
<div class="d-flex gap-1 align-items-baseline flex-grow-1 justify-content-end">
<span v-if="!tableOnly">[ {{ filterName }} ]</span>
<span v-else-if="description">{{ description }}</span>
<span v-else-if="description" v-html="description"></span>
<a v-if="!tableOnly || $slots.filter" href="#" class="btn btn-link px-0 text-dark" data-bs-toggle="collapse" :data-bs-target="'#collapseFilters' + idExtra">
<span class="fa-solid fa-xl fa-filter"></span>
</a>