From a1860099eda483f17899a22b765ea834737d0384 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sat, 24 Jul 2021 18:02:56 -0500 Subject: [PATCH] Fixed loading error --- src/util/proxies.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/proxies.js b/src/util/proxies.js index 34c7f28..6638cf5 100644 --- a/src/util/proxies.js +++ b/src/util/proxies.js @@ -23,7 +23,7 @@ export function createGridProxy(object) { function travel(callback, object, objectProxy) { for (let key in object) { - if (object[key].isProxy) { + if (object[key] == undefined || object[key].isProxy) { continue; } if (isFunction(object[key])) {