Fixed loading error

This commit is contained in:
thepaperpilot 2021-07-24 18:02:56 -05:00
parent 8fe91e88c9
commit a1860099ed

View file

@ -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])) {