react-crud-mobile 1.3.274 → 1.3.275

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.
@@ -2273,7 +2273,8 @@ function UIElement(props) {
2273
2273
  if (event.header) el.header = event.header;
2274
2274
  if (event.label) el.label = event.label;
2275
2275
  if (event.title) el.title = event.title;
2276
- el.label = reactCrudUtils.Utils.nvl(el.title, el.label);
2276
+ var label = reactCrudUtils.Utils.nvl(el.title, el.label);
2277
+ el.label = label;
2277
2278
  var dialogScope = reactCrudUtils.ScopeUtils.create(_extends({
2278
2279
  parent: scope,
2279
2280
  crud: d
@@ -2282,6 +2283,7 @@ function UIElement(props) {
2282
2283
  }));
2283
2284
  var dialog = {
2284
2285
  crud: d,
2286
+ label: label,
2285
2287
  parent: parent,
2286
2288
  component: component,
2287
2289
  scope: dialogScope,