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.
@@ -2264,7 +2264,8 @@ function UIElement(props) {
2264
2264
  if (event.header) el.header = event.header;
2265
2265
  if (event.label) el.label = event.label;
2266
2266
  if (event.title) el.title = event.title;
2267
- el.label = Utils.nvl(el.title, el.label);
2267
+ var label = Utils.nvl(el.title, el.label);
2268
+ el.label = label;
2268
2269
  var dialogScope = ScopeUtils.create(_extends({
2269
2270
  parent: scope,
2270
2271
  crud: d
@@ -2273,6 +2274,7 @@ function UIElement(props) {
2273
2274
  }));
2274
2275
  var dialog = {
2275
2276
  crud: d,
2277
+ label: label,
2276
2278
  parent: parent,
2277
2279
  component: component,
2278
2280
  scope: dialogScope,