@xuda.io/runtime-bundle 1.0.258 → 1.0.259
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.
|
@@ -34252,11 +34252,11 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
34252
34252
|
"xu-exp": async function ($elm, val) {
|
|
34253
34253
|
let view_field_id = val.value === null ? true : val.value
|
|
34254
34254
|
if (val.value === "@_FOR_KEY") {
|
|
34255
|
-
view_field_id = $elm.data().xuData.iterate_info.iterator_key;
|
|
34255
|
+
view_field_id = "@" + $elm.data().xuData.iterate_info.iterator_key;
|
|
34256
34256
|
}
|
|
34257
34257
|
|
|
34258
34258
|
if (val.value === "@_FOR_VAL") {
|
|
34259
|
-
view_field_id = $elm.data().xuData.iterate_info.iterator_val;
|
|
34259
|
+
view_field_id = "@" + $elm.data().xuData.iterate_info.iterator_val;
|
|
34260
34260
|
}
|
|
34261
34261
|
|
|
34262
34262
|
|