added fix to work with $inspect rune

pull/11774/head
godzylinux 2 years ago
parent ae5bbac047
commit b129ade15d

@ -84,6 +84,11 @@ export const make_reactive = (Entity, options) => {
}
return result;
},
ownKeys: (target) => {
// to make it work with $inspect
get(version_signal);
return Reflect.ownKeys(target);
}
});
}

Loading…
Cancel
Save