forked from verdnatura/salix-front
Center ticket field
This commit is contained in:
parent
c013c9054f
commit
103e2f65dc
|
@ -104,7 +104,7 @@ const ticketColumns = ref([
|
||||||
label: t('route.summary.ticket'),
|
label: t('route.summary.ticket'),
|
||||||
field: (row) => row?.id,
|
field: (row) => row?.id,
|
||||||
sortable: false,
|
sortable: false,
|
||||||
align: 'right',
|
align: 'center',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'observations',
|
name: 'observations',
|
||||||
|
@ -237,7 +237,7 @@ const openBuscaman = async (route, ticket) => {
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-ticket="{ value, row }">
|
<template #body-cell-ticket="{ value, row }">
|
||||||
<QTd auto-width>
|
<QTd auto-width class="text-center">
|
||||||
<span class="text-primary cursor-pointer">
|
<span class="text-primary cursor-pointer">
|
||||||
{{ value }}
|
{{ value }}
|
||||||
<TicketDescriptorProxy :id="row?.id" />
|
<TicketDescriptorProxy :id="row?.id" />
|
||||||
|
|
Loading…
Reference in New Issue