@bryntum/grid-react-thin 7.1.1 → 7.1.3

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.
@@ -1024,7 +1024,7 @@ function processEventContent(this: any, {
1024
1024
  // Recurring events need re-creating always:
1025
1025
  // - https://github.com/bryntum/support/issues/10595
1026
1026
  // Re-create portal only if the underlying eventRecord changed its generation or if exporting
1027
- if (!portal || isRecurring || isExporting || portal.eventGeneration !== wrap.elementData.eventGeneration) {
1027
+ if (!portal || isRecurring || isExporting || portal.eventGeneration !== wrap.elementData.eventGeneration || this.$isExpanding) {
1028
1028
  if ((scrolling || !isDragging) && !isEditing) {
1029
1029
  updateContent();
1030
1030
  }
@@ -1033,6 +1033,7 @@ function processEventContent(this: any, {
1033
1033
  reactComponent.syncContent(updateContent);
1034
1034
  }
1035
1035
  }
1036
+
1036
1037
  returnValue = true;
1037
1038
  }
1038
1039
  }