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

Fix since date source

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-03-10 16:14:21 +03:00
parent 8b6f8e5dc3
commit 4353d17151

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>