mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-24 14:11:29 +01:00
Calendar: Stop conflict dialog from refreshing main view
This commit is contained in:
parent
4727b40329
commit
27bf68f66b
@ -4010,8 +4010,17 @@ export class CalendarApp extends EgwApp
|
|||||||
var all_loaded = this.sidebox_et2 !== null;
|
var all_loaded = this.sidebox_et2 !== null;
|
||||||
|
|
||||||
// Avoid home portlets using our templates, and get them right
|
// Avoid home portlets using our templates, and get them right
|
||||||
if(_et2.uniqueId.indexOf('portlet') === 0) return;
|
if(_et2.uniqueId.indexOf('portlet') === 0)
|
||||||
if(_et2.uniqueId === 'calendar-add') return;
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Skip templates not involved in main view
|
||||||
|
if(['calendar.conflicts', 'calendar.add'].includes(_name))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Flag to make sure we don't hide non-view templates
|
// Flag to make sure we don't hide non-view templates
|
||||||
var view_et2 = false;
|
var view_et2 = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user