@xuda.io/runtime-bundle 1.0.555 → 1.0.557
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.
|
@@ -27803,6 +27803,8 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
|
|
|
27803
27803
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
27804
27804
|
let _ds = _session?.DS_GLB[panelDivData.xuData.paramsP.dsSessionP];
|
|
27805
27805
|
|
|
27806
|
+
if (!_ds) continue;
|
|
27807
|
+
|
|
27806
27808
|
let prog_doc = await func.utils.DOCS_OBJ.get(SESSION_ID, _ds.prog_id);
|
|
27807
27809
|
if (!ignore_disableAutoRefresh && prog_doc.properties.disableAutoRefresh) {
|
|
27808
27810
|
continue;
|
|
@@ -32681,7 +32683,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32681
32683
|
$elm.replaceWith(new_$div);
|
|
32682
32684
|
if (from_panel) {
|
|
32683
32685
|
const xuPanelWrapper = _.clone(new_$div.data().xuPanelWrapper);
|
|
32684
|
-
$elm.parent().data(
|
|
32686
|
+
$elm.parent().data().xuPanelWrapper = xuPanelWrapper;
|
|
32685
32687
|
$elm.replaceWith(new_$div.children());
|
|
32686
32688
|
}
|
|
32687
32689
|
|