mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +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
40f7b295c5
commit
7f92a44dce
@ -2250,7 +2250,7 @@ export class CalendarApp extends EgwApp
|
||||
var end_date = this.et2.getValueById('end');
|
||||
var whole_day = <et2_checkbox> this.et2.getWidgetById('whole_day');
|
||||
var duration = ''+this.et2.getValueById('duration');
|
||||
var is_whole_day = whole_day && whole_day.get_value() == whole_day.options.selected_value;
|
||||
var is_whole_day = whole_day && whole_day.value == whole_day.selected_value;
|
||||
var button = _button;
|
||||
var that = this;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user