@arrai-innovations/reactive-helpers 13.0.0 → 13.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arrai-innovations/reactive-helpers",
3
- "version": "13.0.0",
3
+ "version": "13.0.1",
4
4
  "description": "VueJS 3 utility composition functions to help manipulate objects and lists.",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -285,7 +285,7 @@ export function useObjectRelated({ parentState, relatedObjectRules }) {
285
285
  Object.keys(state.relatedObject)
286
286
  ));
287
287
  } else {
288
- removedRuleKeys = new Set(Object.keys(state.relatedObjectRules));
288
+ removedRuleKeys = new Set(Object.keys(state.relatedObject));
289
289
  addedRuleKeys = new Set();
290
290
  }
291
291
  for (const removedRuleKey of removedRuleKeys) {