forked from profectus/Profectus
Fixed loading error
This commit is contained in:
parent
8fe91e88c9
commit
a1860099ed
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ export function createGridProxy(object) {
|
||||||
|
|
||||||
function travel(callback, object, objectProxy) {
|
function travel(callback, object, objectProxy) {
|
||||||
for (let key in object) {
|
for (let key in object) {
|
||||||
if (object[key].isProxy) {
|
if (object[key] == undefined || object[key].isProxy) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (isFunction(object[key])) {
|
if (isFunction(object[key])) {
|
||||||
|
|
Loading…
Reference in a new issue