@integry/sdk 4.6.55 → 4.6.56
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/package.json
CHANGED
|
@@ -807,7 +807,16 @@ const TagList = ({
|
|
|
807
807
|
}
|
|
808
808
|
const isExpanded = expandedNodes[key];
|
|
809
809
|
const isOutputExpanded = expandedOutputs[key];
|
|
810
|
-
|
|
810
|
+
let currentPath: string;
|
|
811
|
+
if (path) {
|
|
812
|
+
if (key.startsWith('[') && key.endsWith(']')) {
|
|
813
|
+
currentPath = `${path}${key}`;
|
|
814
|
+
} else {
|
|
815
|
+
currentPath = `${path}.${key}`;
|
|
816
|
+
}
|
|
817
|
+
} else {
|
|
818
|
+
currentPath = key;
|
|
819
|
+
}
|
|
811
820
|
const nodeMatches =
|
|
812
821
|
searchTerm && nodeMatchesSearch(key, value, searchTerm);
|
|
813
822
|
let text: string;
|