From d35e10d2b7309a2475648990e7f4ef403a6e6bca Mon Sep 17 00:00:00 2001 From: haunter Date: Wed, 22 Apr 2026 20:02:19 +0300 Subject: [PATCH] fix 3 --- static/js/components/commandLog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/components/commandLog.js b/static/js/components/commandLog.js index 83ce05f..072605c 100644 --- a/static/js/components/commandLog.js +++ b/static/js/components/commandLog.js @@ -22,7 +22,7 @@ window.renderLog = function(cmds) { const statusClass = `status-${cmd.status}`; const cancelBtn = ``; - const timeStr = new Date(cmd.created_at + 'Z').toLocaleTimeString([], { hour: '2-digit', minute: '2-digit', second: '2-digit' }); + const timeStr = new Date(cmd.created_at + 'Z').toLocaleTimeString([], { hour: '2-digit', minute: '2-digit', second: '2-digit', hour12: false }); return ` #${cmd.id}
${timeStr}