@xuda.io/runtime-bundle 1.0.652 → 1.0.653

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.
@@ -13167,13 +13167,15 @@ func.UI.screen.fix_val_defaults = function (key, val) {
13167
13167
  key === 'xu-render' &&
13168
13168
  (typeof val === 'undefined' || val === null || val === '') //|| val === ""
13169
13169
  ) {
13170
- ret = 'Y'; // was ret = "N";
13170
+ // ret = 'Y'; // was ret = "N";
13171
+ ret = true;
13171
13172
  }
13172
13173
  if (
13173
13174
  key === 'xu-show' &&
13174
13175
  (typeof val === 'undefined' || val === null || val === '') //|| val === ""
13175
13176
  ) {
13176
- ret = 'Y';
13177
+ // ret = 'Y';
13178
+ ret = true;
13177
13179
  }
13178
13180
  return ret;
13179
13181
  };
@@ -10889,13 +10889,15 @@ func.UI.screen.fix_val_defaults = function (key, val) {
10889
10889
  key === 'xu-render' &&
10890
10890
  (typeof val === 'undefined' || val === null || val === '') //|| val === ""
10891
10891
  ) {
10892
- ret = 'Y'; // was ret = "N";
10892
+ // ret = 'Y'; // was ret = "N";
10893
+ ret = true;
10893
10894
  }
10894
10895
  if (
10895
10896
  key === 'xu-show' &&
10896
10897
  (typeof val === 'undefined' || val === null || val === '') //|| val === ""
10897
10898
  ) {
10898
- ret = 'Y';
10899
+ // ret = 'Y';
10900
+ ret = true;
10899
10901
  }
10900
10902
  return ret;
10901
10903
  };