@colijnit/transaction 12.1.183 → 12.1.184

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.
@@ -31,8 +31,8 @@
31
31
  function Version() {
32
32
  this.name = "@colijnit/transaction";
33
33
  this.description = "Colijn IT transaction package";
34
- this.symVer = "12.1.183";
35
- this.publishDate = "3-1-2024 16:37:50";
34
+ this.symVer = "12.1.184";
35
+ this.publishDate = "3-1-2024 17:02:18";
36
36
  }
37
37
  return Version;
38
38
  }());
@@ -27612,8 +27612,12 @@
27612
27612
  return this._relationId;
27613
27613
  },
27614
27614
  set: function (value) {
27615
- this._relationId = value;
27616
- this._setImageForAvatar();
27615
+ if (this.relationId !== value) {
27616
+ this._image = undefined;
27617
+ this._relation = undefined;
27618
+ this._relationId = value;
27619
+ this._setImageForAvatar();
27620
+ }
27617
27621
  },
27618
27622
  enumerable: false,
27619
27623
  configurable: true
@@ -27623,8 +27627,12 @@
27623
27627
  return this._relation;
27624
27628
  },
27625
27629
  set: function (value) {
27626
- this._relation = value;
27627
- this._setImageForAvatar();
27630
+ if (this._relation && value && this._relation.relationId !== value.relationId) {
27631
+ this._image = undefined;
27632
+ this._relationId = undefined;
27633
+ this._relation = value;
27634
+ this._setImageForAvatar();
27635
+ }
27628
27636
  },
27629
27637
  enumerable: false,
27630
27638
  configurable: true