impaktapps-ui-builder 0.0.972 → 0.0.974

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.
@@ -8467,8 +8467,8 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
8467
8467
  const pastedElementPath = this.elementPathHandler(pastedElementParentPath, insertElementIndex, elementType);
8468
8468
  const copiedConfig = JSON.parse(sessionStorage.getItem("copiedConfig"));
8469
8469
  const notificationMessages = {
8470
- Event: "The pasted content is invalid; the event cannot be integrated into the component section.",
8471
- Component: "The pasted content is invalid; the component cannot be integrated into the event section."
8470
+ Event: " The event cannot be integrated into the component section.",
8471
+ Component: "The component cannot be integrated into the event section."
8472
8472
  };
8473
8473
  if (copiedConfig.Handler && elementType === "Component") {
8474
8474
  store2.setNotify({
@@ -8502,8 +8502,7 @@ var Component = (store2, dynamicData2, submitHandler, service2) => {
8502
8502
  },
8503
8503
  ElementPathSetter: function(uiSchema, copiedFormData) {
8504
8504
  const formData = copiedFormData || JSON.parse(sessionStorage.getItem("copiedConfig"));
8505
- const elementHeading = formData.name ? `Copied Path: ${formData.pageName}` : `Copied Path: ${formData.pageName}`;
8506
- uiSchema.elements[2].elements[1].config.main.heading = elementHeading;
8505
+ uiSchema.elements[2].elements[1].config.main.heading = `Copied Path: ${formData.pageName}`;
8507
8506
  }
8508
8507
  };
8509
8508
  };