@xuda.io/runtime-bundle 1.0.651 → 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
|
};
|
|
@@ -33043,7 +33045,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
33043
33045
|
$elm,
|
|
33044
33046
|
{
|
|
33045
33047
|
key: key,
|
|
33046
|
-
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(
|
|
33048
|
+
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(key, val),
|
|
33047
33049
|
},
|
|
33048
33050
|
is_init,
|
|
33049
33051
|
refreshed_ds,
|
|
@@ -33067,7 +33069,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
33067
33069
|
$elm,
|
|
33068
33070
|
{
|
|
33069
33071
|
key: key,
|
|
33070
|
-
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(
|
|
33072
|
+
value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(key, val),
|
|
33071
33073
|
},
|
|
33072
33074
|
is_init,
|
|
33073
33075
|
refreshed_ds,
|