From e822ffe718ea1bf87e41c01a2c542712546d7ac6 Mon Sep 17 00:00:00 2001 From: Daniel Spitzer Date: Fri, 14 Feb 2025 12:51:20 +0100 Subject: [PATCH] =?UTF-8?q?Zeiterfassung=20Update=20=20*=20Gesammtsumme=20?= =?UTF-8?q?bei=20Admin=20Only=20Mitarbeitern=20einfef=C3=BChrt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/js/pages/timerecording/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/pages/timerecording/index.js b/public/js/pages/timerecording/index.js index b54a528e1..0e20748d9 100644 --- a/public/js/pages/timerecording/index.js +++ b/public/js/pages/timerecording/index.js @@ -87,7 +87,7 @@ table = $('#datatable').DataTable({ $('#must-time').text(json.time.must); $('#holidays').text(json.time.holidays); $('#plushours').text(json.time.plushours); - if (json.time.AllHours!=0) { + if (json.time.AllHours!="00h:00m") { $('#AllHours-div').show(); $('#AllHours').text(json.time.AllHours); }