@xuda.io/runtime-bundle 1.0.1287 → 1.0.1289
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-bundle.js +3 -3
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +3 -3
- package/js/xuda-runtime-slim.min.es.js +3 -3
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -1
- package/js/xuda-worker-bundle.js +1 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -30228,7 +30228,7 @@ func.datasource.update = async function (SESSION_ID, datasource_changes, update_
|
|
|
30228
30228
|
await func.UI.screen.refresh_screen(
|
|
30229
30229
|
SESSION_ID,
|
|
30230
30230
|
klona.klona(fields_changed), // _.cloneDeep(fields_changed),
|
|
30231
|
-
|
|
30231
|
+
datasource_changed[0],
|
|
30232
30232
|
datasource_changed[0], // refresh the current datasource only
|
|
30233
30233
|
value,
|
|
30234
30234
|
);
|
|
@@ -31913,14 +31913,14 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
31913
31913
|
}
|
|
31914
31914
|
|
|
31915
31915
|
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $(SESSION_OBJ[SESSION_ID].root_element), false);
|
|
31916
|
-
|
|
31916
|
+
found = false;
|
|
31917
31917
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
31918
31918
|
// const progDataSource_str = JSON.stringify(panel_val.prog_doc.progDataSource);
|
|
31919
31919
|
if (!panel_val.$panel_div?.data()?.xuData) continue;
|
|
31920
31920
|
|
|
31921
31921
|
if (panel_val.$panel_div.data().xuData.pending_to_delete) continue;
|
|
31922
31922
|
|
|
31923
|
-
if (fields_changed_arr) {
|
|
31923
|
+
if (!watcher && fields_changed_arr) {
|
|
31924
31924
|
if (fields_changed_datasource && panel_val._ds.dsSession <= Number(fields_changed_datasource)) {
|
|
31925
31925
|
continue;
|
|
31926
31926
|
}
|