From d3b62c1c61af49f1b0d8be419dd51c8e9a635c54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Hn=C3=A1t?= Date: Fri, 4 Nov 2022 14:17:44 +0100 Subject: [PATCH] fixup! Merge pull request #33 from olinpin/Minutes --- dashboard_static/js/code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard_static/js/code.js b/dashboard_static/js/code.js index ea7eb9c..d36ef3a 100644 --- a/dashboard_static/js/code.js +++ b/dashboard_static/js/code.js @@ -26,7 +26,7 @@ function showFeeds() { function tweetCell(tweet) { const date = new Date(tweet.created_at); - const minutes = date.getMinutes(); + let minutes = date.getMinutes(); if (minutes < 10) { minutes = "0" + minutes