1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix "logs from" date (#4987)

This commit is contained in:
Alex Andreev 2022-03-11 00:13:22 +03:00 committed by GitHub
parent 613d107545
commit 772e879b81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ const NonInjectedLogControls = observer(({ openSaveFileDialog, model }: Dependen
{since && ( {since && (
<span> <span>
Logs from{" "} Logs from{" "}
<b>{new Date(since[0]).toLocaleString()}</b> <b>{new Date(since).toLocaleString()}</b>
</span> </span>
)} )}
</div> </div>