@xuda.io/runtime-bundle 1.0.956 → 1.0.957
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
|
@@ -11792,6 +11792,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
11792
11792
|
|
|
11793
11793
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
11794
11794
|
// const progDataSource_str = JSON.stringify(panel_val.prog_doc.progDataSource);
|
|
11795
|
+
if (!panel_val.$panel_div?.data()?.xuData) continue;
|
|
11795
11796
|
|
|
11796
11797
|
if (panel_val.$panel_div.data().xuData.pending_to_delete) continue;
|
|
11797
11798
|
|
|
@@ -9519,6 +9519,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9519
9519
|
|
|
9520
9520
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
9521
9521
|
// const progDataSource_str = JSON.stringify(panel_val.prog_doc.progDataSource);
|
|
9522
|
+
if (!panel_val.$panel_div?.data()?.xuData) continue;
|
|
9522
9523
|
|
|
9523
9524
|
if (panel_val.$panel_div.data().xuData.pending_to_delete) continue;
|
|
9524
9525
|
|