@hestia-earth/ui-components 0.9.0 → 0.9.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/esm2020/node/node-logs-models/node-logs-models.component.mjs +3 -2
- package/fesm2015/hestia-earth-ui-components.mjs +2 -1
- package/fesm2015/hestia-earth-ui-components.mjs.map +1 -1
- package/fesm2020/hestia-earth-ui-components.mjs +2 -1
- package/fesm2020/hestia-earth-ui-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5458,7 +5458,8 @@ const requirementLinkedNodeByKey = {
|
|
|
5458
5458
|
site_id: v => ({ '@type': NodeType.Site, '@id': v }),
|
|
5459
5459
|
source_id: v => ({ '@type': NodeType.Source, '@id': v })
|
|
5460
5460
|
};
|
|
5461
|
-
const requirementLinkedNode = (key, value) => requirementLinkedNodeByKey
|
|
5461
|
+
const requirementLinkedNode = (key, value) => key in requirementLinkedNodeByKey &&
|
|
5462
|
+
requirementLinkedNodeByKey[key](value);
|
|
5462
5463
|
class NodeLogsModelsComponent {
|
|
5463
5464
|
constructor(nodeService, searchService, engineService) {
|
|
5464
5465
|
this.nodeService = nodeService;
|