diff options
Diffstat (limited to 'lib/procurement-rfqs/table')
| -rw-r--r-- | lib/procurement-rfqs/table/detail-table/vendor-communication-drawer.tsx | 4 | ||||
| -rw-r--r-- | lib/procurement-rfqs/table/pr-item-dialog.tsx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/procurement-rfqs/table/detail-table/vendor-communication-drawer.tsx b/lib/procurement-rfqs/table/detail-table/vendor-communication-drawer.tsx index 34efdfc2..e43fc676 100644 --- a/lib/procurement-rfqs/table/detail-table/vendor-communication-drawer.tsx +++ b/lib/procurement-rfqs/table/detail-table/vendor-communication-drawer.tsx @@ -278,7 +278,7 @@ export function VendorCommunicationDrawer({ {selectedAttachment.fileName} </DialogTitle> <DialogDescription> - {formatFileSize(selectedAttachment.fileSize)} • {formatDateTime(selectedAttachment.uploadedAt)} + {formatFileSize(selectedAttachment.fileSize)} • {formatDateTime(selectedAttachment.uploadedAt, "KR")} </DialogDescription> </DialogHeader> @@ -417,7 +417,7 @@ export function VendorCommunicationDrawer({ )} <div className="text-xs mt-1 opacity-70 flex items-center gap-1 justify-end"> - {formatDateTime(comment.createdAt)} + {formatDateTime(comment.createdAt, "KR")} </div> </div> diff --git a/lib/procurement-rfqs/table/pr-item-dialog.tsx b/lib/procurement-rfqs/table/pr-item-dialog.tsx index 4523295d..aada8438 100644 --- a/lib/procurement-rfqs/table/pr-item-dialog.tsx +++ b/lib/procurement-rfqs/table/pr-item-dialog.tsx @@ -217,7 +217,7 @@ export function PrDetailsDialog({ <TableCell>{item.materialDescription || "-"}</TableCell> <TableCell className="whitespace-nowrap">{item.size || "-"}</TableCell> <TableCell className="whitespace-nowrap"> - {item.deliveryDate ? formatDate(item.deliveryDate) : "-"} + {item.deliveryDate ? formatDate(item.deliveryDate, "KR") : "-"} </TableCell> <TableCell className="whitespace-nowrap">{item.quantity || "-"}</TableCell> <TableCell className="whitespace-nowrap">{item.uom || "-"}</TableCell> |
