@xuda.io/runtime-bundle 1.0.640 → 1.0.641

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.
@@ -13165,13 +13165,13 @@ func.UI.screen.fix_val_defaults = function (key, val) {
13165
13165
  var ret = val;
13166
13166
  if (
13167
13167
  key === 'xu-render' &&
13168
- (typeof val === 'undefined' || val === null) //|| val === ""
13168
+ (typeof val === 'undefined' || val === null || val === '') //|| val === ""
13169
13169
  ) {
13170
13170
  ret = 'Y'; // was ret = "N";
13171
13171
  }
13172
13172
  if (
13173
13173
  key === 'xu-show' &&
13174
- (typeof val === 'undefined' || val === null) //|| val === ""
13174
+ (typeof val === 'undefined' || val === null || val === '') //|| val === ""
13175
13175
  ) {
13176
13176
  ret = 'Y';
13177
13177
  }
@@ -10887,13 +10887,13 @@ func.UI.screen.fix_val_defaults = function (key, val) {
10887
10887
  var ret = val;
10888
10888
  if (
10889
10889
  key === 'xu-render' &&
10890
- (typeof val === 'undefined' || val === null) //|| val === ""
10890
+ (typeof val === 'undefined' || val === null || val === '') //|| val === ""
10891
10891
  ) {
10892
10892
  ret = 'Y'; // was ret = "N";
10893
10893
  }
10894
10894
  if (
10895
10895
  key === 'xu-show' &&
10896
- (typeof val === 'undefined' || val === null) //|| val === ""
10896
+ (typeof val === 'undefined' || val === null || val === '') //|| val === ""
10897
10897
  ) {
10898
10898
  ret = 'Y';
10899
10899
  }