Skip to content

Commit

Permalink
Fix locale string
Browse files Browse the repository at this point in the history
  • Loading branch information
motoki317 committed Jun 10, 2024
1 parent e73fe76 commit 8b8fd19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/components/templates/build/BuildRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const BuildRow: Component<Props> = (props) => {
<Show when={props.build.queuedAt}>
{(nonNullQueuedAt) => {
const diff = diffHuman(nonNullQueuedAt().toDate())
const localeString = nonNullQueuedAt().toDate().toString()
const localeString = nonNullQueuedAt().toDate().toLocaleString()
return (
<ToolTip props={{ content: localeString }}>
<UpdatedAt>{diff()}</UpdatedAt>
Expand Down

0 comments on commit 8b8fd19

Please sign in to comment.