From 9ca37915b33284ebfb6980640966a9ae3c429d9f Mon Sep 17 00:00:00 2001 From: storm64 Date: Tue, 24 May 2022 13:01:54 +0200 Subject: [PATCH] [sleeplog] Update interface.html --- apps/sleeplog/interface.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sleeplog/interface.html b/apps/sleeplog/interface.html index 7209a50ea..4a5f35638 100644 --- a/apps/sleeplog/interface.html +++ b/apps/sleeplog/interface.html @@ -53,7 +53,7 @@ function getFnList() { files = files.map(file => { var ret = { bName: file, - date = (parseInt(file.substr(9, 4)) + 0.25) * 12096E5, + date: (parseInt(file.substr(9, 4)) + 0.25) * 12096E5, } ret.dName = new Date(ret.date).toISOString().substr(0, 10) + "_" + new Date(ret.date + 12096E5).toISOString().substr(5, 5); ret.dateA = new Date(ret.date).toLocaleDateString(undefined);