Skip to content

Commit 558a29c

Browse files
committed
add space in timestamp
1 parent 44760c6 commit 558a29c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/public/viz-guardrails/XAxis.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function XAxis({
3232
}, [ticks, xScale]);
3333

3434
const format = useCallback((str: string | Date) => {
35-
const myFormat = isDate ? d3.utcFormat('%b%e, %Y') : d3.format('.2s');
35+
const myFormat = isDate ? d3.utcFormat('%b %e, %Y') : d3.format('.2s');
3636

3737
// eslint-disable-next-line @typescript-eslint/no-explicit-any
3838
return myFormat(str as any);

0 commit comments

Comments
 (0)