mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
Calendar: If we don't have a sidebox to check parent, just accept it
Fixes missing events in group calendars on home
This commit is contained in:
parent
f2d187353a
commit
b65e97c087
@ -965,6 +965,10 @@ var et2_calendar_event = /** @class */ (function (_super) {
|
|||||||
[parent.options.owner] :
|
[parent.options.owner] :
|
||||||
parent.options.owner);
|
parent.options.owner);
|
||||||
owner_match = false;
|
owner_match = false;
|
||||||
|
if (!options) {
|
||||||
|
// Could not find the owner options. Probably on home, just let it go.
|
||||||
|
owner_match = true;
|
||||||
|
}
|
||||||
var length_1 = parent_owner.length;
|
var length_1 = parent_owner.length;
|
||||||
for (var i = 0; i < length_1; i++) {
|
for (var i = 0; i < length_1; i++) {
|
||||||
// Handle groups & grouped resources like mailing lists, they won't match so
|
// Handle groups & grouped resources like mailing lists, they won't match so
|
||||||
|
@ -1233,6 +1233,11 @@ export class et2_calendar_event extends et2_valueWidget implements et2_IDetached
|
|||||||
[parent.options.owner] :
|
[parent.options.owner] :
|
||||||
parent.options.owner);
|
parent.options.owner);
|
||||||
owner_match = false;
|
owner_match = false;
|
||||||
|
if(!options)
|
||||||
|
{
|
||||||
|
// Could not find the owner options. Probably on home, just let it go.
|
||||||
|
owner_match = true;
|
||||||
|
}
|
||||||
const length = parent_owner.length;
|
const length = parent_owner.length;
|
||||||
for(var i = 0; i < length; i++ )
|
for(var i = 0; i < length; i++ )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user