@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.
|
@@ -32848,13 +32848,15 @@ func.UI.screen.fix_val_defaults = function (key, val) {
|
|
|
32848
32848
|
key === 'xu-render' &&
|
|
32849
32849
|
(typeof val === 'undefined' || val === null || val === '') //|| val === ""
|
|
32850
32850
|
) {
|
|
32851
|
-
ret = 'Y'; // was ret = "N";
|
|
32851
|
+
// ret = 'Y'; // was ret = "N";
|
|
32852
|
+
ret = true;
|
|
32852
32853
|
}
|
|
32853
32854
|
if (
|
|
32854
32855
|
key === 'xu-show' &&
|
|
32855
32856
|
(typeof val === 'undefined' || val === null || val === '') //|| val === ""
|
|
32856
32857
|
) {
|
|
32857
|
-
ret = 'Y';
|
|
32858
|
+
// ret = 'Y';
|
|
32859
|
+
ret = true;
|
|
32858
32860
|
}
|
|
32859
32861
|
return ret;
|
|
32860
32862
|
};
|