refactor: refs #7385 update ticket columns to use 'delivered' and 'forecast' fields in RouteSummary
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jose Antonio Tubau 2025-04-15 15:40:03 +02:00
parent b25bd19bb5
commit 2f20abf388
1 changed files with 4 additions and 4 deletions

View File

@ -81,16 +81,16 @@ const ticketColumns = ref([
align: 'left',
},
{
name: 'dated',
name: 'delivered',
label: t('route.delivered'),
field: (row) => dashIfEmpty(toDate(row?.landed)),
field: (row) => dashIfEmpty(toDate(row?.delivered)),
sortable: false,
align: 'center',
},
{
name: 'prevision',
name: 'forecast',
label: t('route.forecast'),
field: (row) => dashIfEmpty(toDate(row?.eta)),
field: (row) => dashIfEmpty(toDate(row?.forecast)),
sortable: false,
align: 'center',
},