jedison 0.3.2 → 0.3.3

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.
@@ -1812,13 +1812,11 @@ class Instance extends EventEmitter {
1812
1812
  const valueChanged = different(this.value, newValue);
1813
1813
  this.value = newValue;
1814
1814
  this.emit("set-value", newValue, initiator);
1815
- if (notifyParent) {
1816
- this.emit("notifyParent", initiator);
1817
- }
1818
1815
  if (valueChanged) {
1819
1816
  this.isDirty = true;
1820
1817
  this.emit("change", initiator);
1821
1818
  this.jedison.emit("instance-change", this, initiator);
1819
+ this.emit("notifyParent", initiator);
1822
1820
  }
1823
1821
  }
1824
1822
  /**