Merge pull request 'hotfix: fixed CustomerSamples table not loading correctly when reloading' (!1709) from hotfix_customerSamples into master
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #1709
Reviewed-by: Javier Segarra <jsegarra@verdnatura.es>
This commit is contained in:
Pau Rovira 2025-04-15 06:16:35 +00:00
commit d171c7dd94
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"