@xuda.io/runtime-bundle 1.0.1038 → 1.0.1039
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
|
@@ -11773,7 +11773,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11773
11773
|
if ($(val).data().xuData.node) {
|
|
11774
11774
|
// $.each($(val).data().xuData.node.children, function (key, node) {
|
|
11775
11775
|
for await (const node of $(val).data().xuData.node.children) {
|
|
11776
|
-
if (item.id !== node.id)
|
|
11776
|
+
if (item.id !== node.id) continue;
|
|
11777
11777
|
|
|
11778
11778
|
if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
|
|
11779
11779
|
const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];
|
|
@@ -9498,7 +9498,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9498
9498
|
if ($(val).data().xuData.node) {
|
|
9499
9499
|
// $.each($(val).data().xuData.node.children, function (key, node) {
|
|
9500
9500
|
for await (const node of $(val).data().xuData.node.children) {
|
|
9501
|
-
if (item.id !== node.id)
|
|
9501
|
+
if (item.id !== node.id) continue;
|
|
9502
9502
|
|
|
9503
9503
|
if (typeof node.xu_render_made !== 'undefined' && !node.xu_render_made) {
|
|
9504
9504
|
const node_data = UI_WORKER_OBJ.xu_render_cache[node.xu_render_xu_ui_id][node.xu_render_cache_id];
|