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 Jim Ehrismann
parent f065d0a576
commit 20438766ae

View File

@ -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>