added fix to work with $inspect rune

pull/11504/head
godzylinux 2 years ago committed by FoHoOV
parent 9715aa8509
commit d8bc4c7a7f

@ -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