@xuda.io/runtime-bundle 1.0.906 → 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,6 +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 val !== 'string' && typeof val !== 'object') return true;
|
|
11453
|
+
if (typeof val === 'string' && !val?.includes('@')) return true;
|
|
11452
11454
|
if (key.substr(0, 3) !== 'xu-') return true;
|
|
11453
11455
|
|
|
11454
11456
|
if (key === 'xu-bind' || key === 'xu-for') {
|
|
@@ -9176,6 +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 val !== 'string' && typeof val !== 'object') return true;
|
|
9180
|
+
if (typeof val === 'string' && !val?.includes('@')) return true;
|
|
9179
9181
|
if (key.substr(0, 3) !== 'xu-') return true;
|
|
9180
9182
|
|
|
9181
9183
|
if (key === 'xu-bind' || key === 'xu-for') {
|