@xuda.io/runtime-bundle 1.0.907 → 1.0.908
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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -11449,8 +11449,8 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11449
11449
|
};
|
|
11450
11450
|
|
|
11451
11451
|
$.each(elm_data?.xuAttributes, function (key, val) {
|
|
11452
|
-
if (typeof
|
|
11453
|
-
if (typeof
|
|
11452
|
+
if (typeof val !== 'string' && typeof val !== 'object') return true;
|
|
11453
|
+
if (typeof val === 'string' && !val?.includes('@')) return true;
|
|
11454
11454
|
if (key.substr(0, 3) !== 'xu-') return true;
|
|
11455
11455
|
|
|
11456
11456
|
if (key === 'xu-bind' || key === 'xu-for') {
|
|
@@ -9176,8 +9176,8 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9176
9176
|
};
|
|
9177
9177
|
|
|
9178
9178
|
$.each(elm_data?.xuAttributes, function (key, val) {
|
|
9179
|
-
if (typeof
|
|
9180
|
-
if (typeof
|
|
9179
|
+
if (typeof val !== 'string' && typeof val !== 'object') return true;
|
|
9180
|
+
if (typeof val === 'string' && !val?.includes('@')) return true;
|
|
9181
9181
|
if (key.substr(0, 3) !== 'xu-') return true;
|
|
9182
9182
|
|
|
9183
9183
|
if (key === 'xu-bind' || key === 'xu-for') {
|