@xuda.io/runtime-bundle 1.0.761 → 1.0.762
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
|
@@ -12607,7 +12607,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12607
12607
|
// let new_val = eval(e_exp + `="${value}"`);
|
|
12608
12608
|
let e_exp = val.value.replace(bind_field_id, 'obj_item');
|
|
12609
12609
|
|
|
12610
|
-
let new_val = eval(e_exp + input_field_type === 'string' ? `="${value}"` : `=${value}`);
|
|
12610
|
+
let new_val = eval(e_exp + (input_field_type === 'string' ? `="${value}"` : `=${value}`));
|
|
12611
12611
|
|
|
12612
12612
|
new_arr[arr_idx] = obj_item;
|
|
12613
12613
|
} else {
|
|
@@ -10317,7 +10317,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10317
10317
|
// let new_val = eval(e_exp + `="${value}"`);
|
|
10318
10318
|
let e_exp = val.value.replace(bind_field_id, 'obj_item');
|
|
10319
10319
|
|
|
10320
|
-
let new_val = eval(e_exp + input_field_type === 'string' ? `="${value}"` : `=${value}`);
|
|
10320
|
+
let new_val = eval(e_exp + (input_field_type === 'string' ? `="${value}"` : `=${value}`));
|
|
10321
10321
|
|
|
10322
10322
|
new_arr[arr_idx] = obj_item;
|
|
10323
10323
|
} else {
|