From cbe8e841c68d04a34de1348d1629d51b85cfa578 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 3 Nov 2022 14:18:10 -0600 Subject: [PATCH] Timesheet: Fix details/no details filter did not change description display --- timesheet/js/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timesheet/js/app.ts b/timesheet/js/app.ts index 10576b089c..d2a7d63b19 100644 --- a/timesheet/js/app.ts +++ b/timesheet/js/app.ts @@ -87,7 +87,7 @@ class TimesheetApp extends EgwApp { egw.css("#timesheet-index span.timesheet_titleDetails","font-weight:" + (filter2.getValue() == '1' ? "bold;" : "normal;")); // Show / hide descriptions - egw.css(".et2_label.ts_description","display:" + (filter2.getValue() == '1' ? "block;" : "none;")); + egw.css(".ts_description", "display:" + (filter2.getValue() == '1' ? "block;" : "none;")); } }