@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@integry/sdk",
3
- "version": "4.6.55",
3
+ "version": "4.6.56",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -807,7 +807,16 @@ const TagList = ({
807
807
  }
808
808
  const isExpanded = expandedNodes[key];
809
809
  const isOutputExpanded = expandedOutputs[key];
810
- const currentPath = path ? `${path}.${key}` : key;
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;