Skip to content

Commit

Permalink
Fix "logs from" date (#4987)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksfront authored Mar 10, 2022
1 parent 613d107 commit 772e879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/dock/logs/controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const NonInjectedLogControls = observer(({ openSaveFileDialog, model }: Dependen
{since && (
<span>
Logs from{" "}
<b>{new Date(since[0]).toLocaleString()}</b>
<b>{new Date(since).toLocaleString()}</b>
</span>
)}
</div>
Expand Down

0 comments on commit 772e879

Please sign in to comment.