mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +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)
|
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
|
// Only set end date if not provided, adding seconds fails with DST
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
|
Loading…
Reference in New Issue
Block a user