Replace Customer File management dateTime formatting with new utils
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
William Buezas 2024-03-28 16:25:02 -03:00
parent 73ea49df63
commit 3cb045936b
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import { useRoute, useRouter } from 'vue-router';
import { QBadge, QBtn, QCheckbox } from 'quasar';
import { downloadFile } from 'src/composables/downloadFile';
import { toDateHourMinSec } from 'src/filters';
import { toDateTimeFormat } from 'src/filters/date';
import FetchData from 'components/FetchData.vue';
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
@ -163,7 +163,7 @@ const columns = computed(() => [
field: (value) => value.dms.created,
label: t('Created'),
name: 'created',
format: (value) => toDateHourMinSec(value),
format: (value) => toDateTimeFormat(value),
},
{
align: 'right',