hotfix: fixed CustomerSamples table not loading correctly when reloading
gitea/salix-front/pipeline/pr-master This commit looks good Details

This commit is contained in:
Pau Rovira 2025-04-14 12:32:11 +00:00
parent 7119cbbe89
commit 9919352e8c
1 changed files with 3 additions and 5 deletions

View File

@ -4,7 +4,6 @@ import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router';
import { QBtn, useQuasar } from 'quasar';
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
import { toDateTimeFormat } from 'src/filters/date';
import VnTable from 'src/components/VnTable/VnTable.vue';
@ -34,7 +33,7 @@ const columns = computed(() => [
},
{
align: 'left',
format: (row) => row.type.description,
format: (row) => row?.type?.description,
label: t('Description'),
name: 'description',
},
@ -74,12 +73,11 @@ const tableRef = ref();
<template>
<VnTable
ref="tableRef"
data-key="ClientSamples"
data-key="CustomerSamples"
auto-load
:filter="filter"
:user-filter="filter"
url="ClientSamples"
:columns="columns"
:pagination="{ rowsPerPage: 12 }"
:disable-option="{ card: true }"
:right-search="false"
:rows="rows"