From 7c4488ddc7d1b414b6aa3f254bf284fe099dfc2a Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Wed, 9 Jun 2021 15:19:05 +0200 Subject: [PATCH] input-enrichment: Fix incorrect identification of enriched elements --- public/js/icinga/behavior/input-enrichment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/icinga/behavior/input-enrichment.js b/public/js/icinga/behavior/input-enrichment.js index f631100a5..824afffc1 100644 --- a/public/js/icinga/behavior/input-enrichment.js +++ b/public/js/icinga/behavior/input-enrichment.js @@ -79,7 +79,7 @@ inputs.forEach(function (input) { var enrichment = _this._enrichments.get(input); if (enrichment) { - _this._cachedEnrichments[_this.icinga.utils.getDomPath(input).join(' ')] = enrichment; + _this._cachedEnrichments[_this.icinga.utils.getDomPath(input).join(' > ')] = enrichment; } }); };