@xuda.io/runtime-bundle 1.0.639 → 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.
|
@@ -32846,13 +32846,13 @@ func.UI.screen.fix_val_defaults = function (key, val) {
|
|
|
32846
32846
|
var ret = val;
|
|
32847
32847
|
if (
|
|
32848
32848
|
key === 'xu-render' &&
|
|
32849
|
-
(typeof val === 'undefined' || val === null) //|| val === ""
|
|
32849
|
+
(typeof val === 'undefined' || val === null || val === '') //|| val === ""
|
|
32850
32850
|
) {
|
|
32851
32851
|
ret = 'Y'; // was ret = "N";
|
|
32852
32852
|
}
|
|
32853
32853
|
if (
|
|
32854
32854
|
key === 'xu-show' &&
|
|
32855
|
-
(typeof val === 'undefined' || val === null) //|| val === ""
|
|
32855
|
+
(typeof val === 'undefined' || val === null || val === '') //|| val === ""
|
|
32856
32856
|
) {
|
|
32857
32857
|
ret = 'Y';
|
|
32858
32858
|
}
|
|
@@ -32947,7 +32947,11 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
32947
32947
|
break;
|
|
32948
32948
|
}
|
|
32949
32949
|
|
|
32950
|
-
if (typeof nodeP.attributes[attr] === 'undefined') {
|
|
32950
|
+
// if (typeof nodeP.attributes[attr] === 'undefined') {
|
|
32951
|
+
// continue;
|
|
32952
|
+
// }
|
|
32953
|
+
|
|
32954
|
+
if (typeof func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]) === 'undefined') {
|
|
32951
32955
|
continue;
|
|
32952
32956
|
}
|
|
32953
32957
|
|