@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.
- package/bundles/hestia-earth-ui-components.umd.js +3 -3
- package/bundles/hestia-earth-ui-components.umd.js.map +1 -1
- package/esm2015/node/node-link/node-link.component.js +4 -4
- package/fesm2015/hestia-earth-ui-components.js +3 -3
- package/fesm2015/hestia-earth-ui-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -5382,12 +5382,12 @@
|
|
|
5382
5382
|
});
|
|
5383
5383
|
Object.defineProperty(NodeLinkComponent.prototype, "url", {
|
|
5384
5384
|
get: function () {
|
|
5385
|
-
|
|
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
|