mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
Calendar: avoid TypeError: Cannot read properties of null (reading 'length') when there is no data (due to filter changing)
This commit is contained in:
parent
a0d044a4c1
commit
e4bdbe256a
@ -1952,7 +1952,7 @@ export class et2_calendar_planner extends et2_calendar_view implements et2_IDeta
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(waitForGroups.length == 0)
|
if(!data || data.length == 0)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user