Timesheet: Fix details/no details filter did not change description display

This commit is contained in:
nathan 2022-11-03 14:18:10 -06:00
parent 8f51b00da3
commit cbe8e841c6

View File

@ -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;"));
}
}