mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
fix whole-day recuring events always asks for splitting of series when trying to store
caused by wrong condition hinting whole-day flag has changed
This commit is contained in:
parent
971a27e23f
commit
2fa7fa9a45
@ -2268,7 +2268,7 @@ export class CalendarApp extends EgwApp
|
||||
const end_date = this.et2.getValueById('end');
|
||||
const whole_day = <et2_checkbox> this.et2.getWidgetById('whole_day');
|
||||
const duration = ''+this.et2.getValueById('duration');
|
||||
const is_whole_day = whole_day && whole_day.get_value() == whole_day.options.selected_value;
|
||||
const is_whole_day = whole_day && whole_day.value == whole_day.selected_value;
|
||||
const button = _button;
|
||||
const that = this;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user