@integry/sdk 4.6.53 → 4.6.55

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.53",
3
+ "version": "4.6.55",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -323,7 +323,8 @@ const FieldDropdown = (props: FieldMenuProps) => {
323
323
  ? html` <a
324
324
  className=${styles.optionsRefreshProminent}
325
325
  href="#"
326
- onclick=${() => {
326
+ onclick=${(e: Event) => {
327
+ e.preventDefault();
327
328
  if (handleRefreshClick) {
328
329
  setIsLoadingMoreOptions(true);
329
330
  handleRefreshClick(
@@ -859,7 +859,12 @@ const TagList = ({
859
859
  currentPath,
860
860
  )}`;
861
861
  onSelect({
862
- currentPath: tagPath,
862
+ currentPath: tagPath
863
+ .replace(/\bparameters\.parameters\b/g, 'parameters')
864
+ .replace(
865
+ /\bauthorization\.authorization\b/g,
866
+ 'authorization',
867
+ ),
863
868
  key,
864
869
  value: escapeHTMLIfNeeded(value),
865
870
  });