@xuda.io/runtime-bundle 1.0.767 → 1.0.769
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.
|
@@ -32291,7 +32291,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32291
32291
|
},
|
|
32292
32292
|
},
|
|
32293
32293
|
};
|
|
32294
|
-
await func.datasource.update(SESSION_ID, datasource_changes, null, true);
|
|
32294
|
+
await func.datasource.update(SESSION_ID, datasource_changes, null, ['radio', 'checkbox'].includes(input_field_type) ? true : false);
|
|
32295
32295
|
}
|
|
32296
32296
|
}
|
|
32297
32297
|
}
|
|
@@ -34341,7 +34341,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34341
34341
|
);
|
|
34342
34342
|
|
|
34343
34343
|
let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
|
|
34344
|
-
if (ret.abort) return await done();
|
|
34344
|
+
if (ret.abort || nodeP.tagName === 'svg') return await done();
|
|
34345
34345
|
// check if iterator made to prevent children render
|
|
34346
34346
|
|
|
34347
34347
|
const ret_iterate_child = await iterate_child($div, nodeP, parent_infoP, null, $root_container);
|