0
0
Fork 0

fix: show icons

This commit is contained in:
Javier Segarra 2024-04-26 12:39:09 +02:00
parent 71f60b82e4
commit 813703ce93
1 changed files with 11 additions and 0 deletions

View File

@ -549,6 +549,17 @@ const selectSalesPersonId = (id) => (selectedSalesPersonId.value = id);
{{ value }}
</QTd>
</template>
<template #body-cell-customerStatus="props">
<QTd @click="stopEventPropagation($event, props.col)">
<component
:is="tableColumnComponents[props.col.name].component"
class="col-content"
v-bind="tableColumnComponents[props.col.name].props(props)"
@click="tableColumnComponents[props.col.name].event(props)"
>
</component>
</QTd>
</template>
<template #body-cell-id="props">
<QTd @click="stopEventPropagation($event, props.col)">
<component