mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
Calendar: Fix end date did not hide when using an event duration
This commit is contained in:
parent
fe0af6a487
commit
74f0822494
@ -1463,7 +1463,8 @@ export class CalendarApp extends EgwApp
|
||||
|
||||
if(duration != null && end != null)
|
||||
{
|
||||
end.set_disabled(duration.get_value()!=='');
|
||||
end.set_disabled(duration.get_value() !== '');
|
||||
end.classList.toggle("hideme", end.disabled);
|
||||
|
||||
// Only set end date if not provided, adding seconds fails with DST
|
||||
// @ts-ignore
|
||||
|
Loading…
Reference in New Issue
Block a user