diff --git a/src/pages/09_task-order/TableTaskOrder.vue b/src/pages/09_task-order/TableTaskOrder.vue index db10b942..5ed55fb5 100644 --- a/src/pages/09_task-order/TableTaskOrder.vue +++ b/src/pages/09_task-order/TableTaskOrder.vue @@ -168,19 +168,8 @@ const emit = defineEmits<{ }} - {{ - dateFormatJS({ - date: props.row.createdAt, - dayStyle: '2-digit', - monthStyle: 'short', - }) || '-' - }} - {{ - dateFormatJS({ - date: props.row.createdAt, - timeOnly: true, - }) - }} + {{ dateFormatJS({ date: props.row.createdAt }) || '-' }} + {{ dateFormatJS({ date: props.row.createdAt, timeOnly: true }) }} {{ getCreatedByName(props.row, $i18n) }} @@ -275,14 +264,12 @@ const emit = defineEmits<{ }, { label: $t('taskOrder.issueDate'), - value: `${dateFormatJS({ - date: props.row.createdAt, - dayStyle: '2-digit', - monthStyle: 'short', - })} ${dateFormatJS({ - date: props.row.createdAt, - timeOnly: true, - })}`, + value: `${dateFormatJS({ date: props.row.createdAt })} ${dateFormatJS( + { + date: props.row.createdAt, + timeOnly: true, + }, + )}`, }, { label: $t('taskOrder.madeBy'),