-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Closed
Description
I am getting the following errors:
TypeError: Cannot read properties of undefined (reading 'visible')
where the error references the following line and function:
_getSortedDatasetMetas(filterVisible) {
const me = this;
const metasets = me._sortedMetasets;
const result = [];
let i, ilen;
for (i = 0, ilen = metasets.length; i < ilen; ++i) {
const meta = metasets[i];
if (!filterVisible || meta.visible) { <---- THIS LINE
result.push(meta);
}
}
return result;
}
TypeError: Cannot read properties of undefined (reading 'controller')
where the error references the following line:
const style = meta.controller.getStyle(usePointStyle ? 0 : undefined);
The problem is that it happens randomly and I can not find any culprit for the problem.
mfpopa
Metadata
Metadata
Assignees
Labels
No labels