@hestia-earth/ui-components 0.2.11 → 0.2.12

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.
@@ -5382,12 +5382,12 @@
5382
5382
  });
5383
5383
  Object.defineProperty(NodeLinkComponent.prototype, "url", {
5384
5384
  get: function () {
5385
- return [
5385
+ var url = [
5386
5386
  baseUrl(),
5387
5387
  this.node['@type'].toLowerCase(),
5388
- this.id,
5389
- this.node.aggregated ? "dataState=" + api.DataState.recalculated : null
5388
+ this.id
5390
5389
  ].filter(Boolean).join('/');
5390
+ return "" + url + (this.node.aggregated ? "?dataState=" + api.DataState.recalculated : '');
5391
5391
  },
5392
5392
  enumerable: false,
5393
5393
  configurable: true