diff options
| author | Frank <[email protected]> | 2025-10-29 17:14:14 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-10-29 17:14:28 -0400 |
| commit | 950b608c4d41beaac8af24122f342c130c18fa58 (patch) | |
| tree | f9e44954e82c3b56043be16b39c41145fa8a3b63 | |
| parent | 3210df74287f8c2afa4bb382d1da420c2826c2b7 (diff) | |
| download | opencode-950b608c4d41beaac8af24122f342c130c18fa58.tar.gz opencode-950b608c4d41beaac8af24122f342c130c18fa58.zip | |
zen: show browser default time
| -rw-r--r-- | packages/console/app/src/routes/workspace/common.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/console/app/src/routes/workspace/common.tsx b/packages/console/app/src/routes/workspace/common.tsx index 03a40b579..15839666a 100644 --- a/packages/console/app/src/routes/workspace/common.tsx +++ b/packages/console/app/src/routes/workspace/common.tsx @@ -16,7 +16,7 @@ export function formatDateForTable(date: Date) { minute: "2-digit", hour12: true, } - return date.toLocaleDateString("en-GB", options).replace(",", ",") + return date.toLocaleDateString(undefined, options).replace(",", ",") } export function formatDateUTC(date: Date) { |
