diff --git a/public/locales/en/group.json b/public/locales/en/group.json index 2a19ed7..d8fe3a4 100644 --- a/public/locales/en/group.json +++ b/public/locales/en/group.json @@ -6,10 +6,10 @@ "Status": "Status", "City": "City", "Guide": "Guide", - "ResSendingDate": "Res. sending date(YYYY-MM-DD)", + "ResSendingDate": "Res. sending date", "3DGuideTip": "Reservations without the tour guide information will be highlighted in red if the arrival date is within 3 days.", "Attachments": "Attachments", - "ConfirmationDate": "Confirmation Date(YYYY-MM-DD)", + "ConfirmationDate": "Confirmation Date", "ConfirmationDetails": "Confirmation Details", "PNR": "PASSAGER NAME RECORD", diff --git a/src/views/external-reviews/review-list.jsx b/src/views/external-reviews/review-list.jsx index c2af722..afcbf33 100644 --- a/src/views/external-reviews/review-list.jsx +++ b/src/views/external-reviews/review-list.jsx @@ -40,7 +40,7 @@ function ReviewList() { ), }, { - title: t("review.DatePosted"), + title: (<>
{t('review.DatePosted')}
YYYY-MM-DD
), dataIndex: "datePosted", width: "120px", ellipsis: true, @@ -85,7 +85,7 @@ function ReviewList() { }, }, { - title: t("review.ApprovalDate"), + title: (<>
{t('review.ApprovalDate')}
YYYY-MM-DD
), dataIndex: "approvalDate", width: "150px", ellipsis: true, diff --git a/src/views/reservation/Detail.jsx b/src/views/reservation/Detail.jsx index c403292..b5e200b 100644 --- a/src/views/reservation/Detail.jsx +++ b/src/views/reservation/Detail.jsx @@ -21,7 +21,7 @@ function Detail() { dataIndex: 'PCI_Changetext', }, { - title: t('group:ResSendingDate'), + title: (<>
{t('group:ResSendingDate')}
YYYY-MM-DD
), dataIndex: 'PCI_SendDate', }, { @@ -33,7 +33,7 @@ function Detail() { render: attachmentRender }, { - title: t('group:ConfirmationDate'), + title: (<>
{t('group:ConfirmationDate')}
YYYY-MM-DD
), dataIndex: 'PCI_ConfirmDate', }, { @@ -73,7 +73,7 @@ function Detail() { const flightColumns = [ { - title: 'Date(YYYY-MM-DD)', + title: (<>
Date
YYYY-MM-DD
), dataIndex: 'FlightDate', }, { @@ -97,7 +97,7 @@ function Detail() { dataIndex: 'ToTerminal', }, { - title: 'Departure Time(YYYY-MM-DD)', + title: (<>
Departure Time
YYYY-MM-DD
), dataIndex: 'FlightDate', }, { @@ -107,6 +107,7 @@ function Detail() { { title: 'Luggage Allowance', dataIndex: 'Baggage', + width: "100px", }, { title: 'Tickets Number and Passports', diff --git a/src/views/reservation/Newest.jsx b/src/views/reservation/Newest.jsx index 5f180fc..f002127 100644 --- a/src/views/reservation/Newest.jsx +++ b/src/views/reservation/Newest.jsx @@ -28,7 +28,7 @@ function Newest() { }, }, { - title: t('group:ArrivalDate'), + title: (<>
{t('group:ArrivalDate')}
YYYY-MM-DD
), dataIndex: 'arrivalDate', render: (text) => (isEmpty(text) ? '' : dayjs(text).format('YYYY-MM-DD')), }, @@ -41,7 +41,7 @@ function Newest() { dataIndex: 'status' }, { - title: t('group:ResSendingDate'), + title: (<>
{t('group:ResSendingDate')}
YYYY-MM-DD
), dataIndex: 'reservationDate', render: (text) => (isEmpty(text) ? '' : dayjs(text).format('YYYY-MM-DD')), },