Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix dates
  • Loading branch information
gka committed Mar 8, 2026
commit bca614b24f254d2df198e7784ea4b86776ba76b5
7 changes: 4 additions & 3 deletions src/routes/features/scales/+page.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ The difference between the two scales is only visible when the viewer is not in

const domain = [
new Date('2021-01-01T00:00:00Z'),
new Date('2021-02-01T00:00:00Z')
new Date('2021-01-02T00:00:00Z')
];
</script>

Expand All @@ -193,15 +193,16 @@ The difference between the two scales is only visible when the viewer is not in
marginLeft={20}
marginRight={20}
height={70}
testid="time-vs-utc-time" />
testid="time-vs-utc-time"></Plot>
<p><strong>utc</strong> scale</p>
<Plot
x={{ type: 'utc', domain, grid: true }}
marginTop={0}
marginLeft={20}
marginRight={20}
height={70}
testid="time-vs-utc-utc" />
testid="time-vs-utc-utc">
</Plot>
</div>
```

Expand Down