fix diverse calendar errors #60294

thought not sure how this is supposed to work in 21.1, both look like a general problem
This commit is contained in:
Ralf Becker 2021-07-06 13:05:56 +02:00
parent cbed97de6d
commit 51b0888b5d
2 changed files with 3 additions and 5 deletions

View File

@ -985,7 +985,7 @@ export class etemplate2
_root.iterateOver(function (_widget)
{
// The widget must have an id to be included in the values array
if (_widget.id == "") {
if (_widget.id === undefined || _widget.id === "") {
return;
}

View File

@ -630,10 +630,8 @@ export class CalendarApp extends EgwApp
let filtered = Object.keys(this._grants).filter(account => this.state.owner.indexOf(account) >= 0);
// Check if we're interested in displaying by owner / participant
let owner_check = et2_calendar_event.owner_check(cal_event, jQuery.extend({},
{options: {owner: filtered}},
this.et2
));
let owner_check = et2_calendar_event.owner_check(cal_event, this.et2, jQuery.extend({},
{options: {owner: filtered}}));
if(!owner_check)
{
// The owner is not in the list of what we're allowed / care about