Skip to content

Commit

Permalink
fix: timestamp uses correct end of timerange
Browse files Browse the repository at this point in the history
  • Loading branch information
knightss27 committed Mar 15, 2023
1 parent 3cbd4f1 commit 56b8d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WeathermapPanel.tsx
Expand Up @@ -1011,7 +1011,7 @@ export const WeathermapPanel: React.FC<PanelProps<SimpleOptions>> = (props: Pane
`
)}
>
{wm.settings.panel.showTimestamp ? timeRange.from.toLocaleString() : ''}
{wm.settings.panel.showTimestamp ? timeRange.to.toLocaleString() : ''}
</div>
</div>
);
Expand Down

0 comments on commit 56b8d34

Please sign in to comment.