impaktapps-ui-builder 0.0.101-alpha.90 → 0.0.101-alpha.91
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
|
@@ -368,7 +368,9 @@ export default (store: any, dynamicData: any, submitHandler: any, service: any)
|
|
|
368
368
|
},
|
|
369
369
|
ElementPathSetter: function(uiSchema: any,copiedFormData?: any){
|
|
370
370
|
const formData = copiedFormData || JSON.parse(sessionStorage.getItem("copiedConfig"));
|
|
371
|
-
uiSchema
|
|
371
|
+
if(uiSchema?.elements?.[1]?.elements?.[0]?.config?.main?.headerIcons){
|
|
372
|
+
uiSchema.elements[1].elements[0].config.main.headerIcons.elements[1].widget.config.main.tooltipMessage = `Copied Path: ${formData.name}`;
|
|
373
|
+
}
|
|
372
374
|
}
|
|
373
375
|
}
|
|
374
376
|
};
|