@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.
|
@@ -31135,8 +31135,8 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31135
31135
|
};
|
|
31136
31136
|
|
|
31137
31137
|
$.each(elm_data?.xuAttributes, function (key, val) {
|
|
31138
|
-
if (typeof
|
|
31139
|
-
if (typeof
|
|
31138
|
+
if (typeof val !== 'string' && typeof val !== 'object') return true;
|
|
31139
|
+
if (typeof val === 'string' && !val?.includes('@')) return true;
|
|
31140
31140
|
if (key.substr(0, 3) !== 'xu-') return true;
|
|
31141
31141
|
|
|
31142
31142
|
if (key === 'xu-bind' || key === 'xu-for') {
|