From 86c4a384edad00558d29594149284466069d476e Mon Sep 17 00:00:00 2001 From: milan Date: Wed, 18 Dec 2024 17:08:57 +0100 Subject: [PATCH] fixed alignment of timesheet descriptions regarding ticket # 101351 --- 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 e2d58561f4..2ecd75862e 100644 --- a/timesheet/js/app.ts +++ b/timesheet/js/app.ts @@ -91,7 +91,7 @@ class TimesheetApp extends EgwApp { egw.css("#timesheet-index span.timesheet_titleDetails","font-weight:" + (filter2.getValue() == '1' ? "bold;" : "normal;")); // Show / hide descriptions - egw.css(".ts_description", "display:" + (filter2.getValue() == '1' ? "block;" : "none;")); + egw.css(".ts_description", "display:" + (filter2.getValue() == '1' ? "flex;" : "none;")); } }