From: gregor herrmann Date: Thu, 6 Sep 2018 16:19:19 +0000 (+0200) Subject: fix strftime format in current air/water updates X-Git-Url: https://git.toastfreeware.priv.at/chrisu/seepark.git/commitdiff_plain/5ca15353c392ff167e7b8516005428ffb5077efc fix strftime format in current air/water updates --- diff --git a/web/static/seepark_web.js b/web/static/seepark_web.js index fdc5377..88854ca 100644 --- a/web/static/seepark_web.js +++ b/web/static/seepark_web.js @@ -220,7 +220,7 @@ setInterval( .then((resp) => resp.json()) .then(function(data) { airvalue.innerText = data['value'].toFixed(1); - airtime.innerText = strftime('%Y-%m-%d H:%M', new Date(data['timestamp'])); + airtime.innerText = strftime('%Y-%m-%d %H:%M', new Date(data['timestamp'])); }) .catch(function(error) { console.log(error); @@ -229,7 +229,7 @@ setInterval( .then((resp) => resp.json()) .then(function(data) { watervalue.innerText = data['value'].toFixed(1); - watertime.innerText = strftime('%Y-%m-%d H:%M', new Date(data['timestamp'])); + watertime.innerText = strftime('%Y-%m-%d %H:%M', new Date(data['timestamp'])); }) .catch(function(error) { console.log(error);