react-crud-mobile 1.3.118 → 1.3.120

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.
@@ -2115,11 +2115,15 @@ function UIElement(props) {
2115
2115
  }, def));
2116
2116
  var el = {};
2117
2117
  if (typeof event.dialog === 'object') {
2118
- el = _extends({}, event.dialog);
2118
+ el = _extends({
2119
+ label: original.label,
2120
+ icon: original.icon
2121
+ }, event.dialog);
2119
2122
  }
2120
2123
  if (event.header) el.header = event.header;
2121
2124
  if (event.label) el.label = event.label;
2122
2125
  if (event.title) el.title = event.title;
2126
+ event.label = reactCrudUtils.Utils.nvl(event.label, event.title);
2123
2127
  var dialogScope = reactCrudUtils.ScopeUtils.create(_extends({
2124
2128
  parent: scope,
2125
2129
  crud: d