mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
* Calendar: Fix quick-add did not pass changes to start time on to edit dialog
This commit is contained in:
parent
4f0c7250da
commit
321fe6a474
@ -1925,7 +1925,7 @@ var CalendarApp = /** @class */ (function (_super) {
|
|||||||
if (title && !title.get_value()) {
|
if (title && !title.get_value()) {
|
||||||
title.set_value(title.egw().lang('Event'));
|
title.set_value(title.egw().lang('Event'));
|
||||||
}
|
}
|
||||||
var options = jQuery.extend(this._add_dialog_values(widget), this.quick_add);
|
var options = jQuery.extend(this.quick_add, this._add_dialog_values(widget));
|
||||||
// Open regular edit
|
// Open regular edit
|
||||||
egw.open(null, 'calendar', 'edit', options);
|
egw.open(null, 'calendar', 'edit', options);
|
||||||
// Close the dialog
|
// Close the dialog
|
||||||
|
@ -2158,7 +2158,7 @@ class CalendarApp extends EgwApp
|
|||||||
{
|
{
|
||||||
title.set_value(title.egw().lang('Event'));
|
title.set_value(title.egw().lang('Event'));
|
||||||
}
|
}
|
||||||
let options = jQuery.extend(this._add_dialog_values(widget), this.quick_add);
|
let options = jQuery.extend(this.quick_add, this._add_dialog_values(widget));
|
||||||
|
|
||||||
// Open regular edit
|
// Open regular edit
|
||||||
egw.open(null,'calendar','edit',options);
|
egw.open(null,'calendar','edit',options);
|
||||||
|
Loading…
Reference in New Issue
Block a user