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
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
b25bd19bb5
commit
2f20abf388
|
@ -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',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue