mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 09:39:00 +01:00
Calendar: Stop conflict dialog from refreshing main view
This commit is contained in:
parent
90508896d3
commit
e914e6df66
@ -4010,8 +4010,17 @@ export class CalendarApp extends EgwApp
|
||||
var all_loaded = this.sidebox_et2 !== null;
|
||||
|
||||
// Avoid home portlets using our templates, and get them right
|
||||
if(_et2.uniqueId.indexOf('portlet') === 0) return;
|
||||
if(_et2.uniqueId === 'calendar-add') return;
|
||||
if(_et2.uniqueId.indexOf('portlet') === 0)
|
||||
{
|
||||
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
|
||||
var view_et2 = false;
|
||||
|
Loading…
Reference in New Issue
Block a user