@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.
@@ -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[key](value);
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;