@xuda.io/runtime-bundle 1.0.374 → 1.0.375

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.
@@ -9022,6 +9022,11 @@ func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0
9022
9022
  }
9023
9023
  };
9024
9024
  func.UI.refs_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0]) {
9025
+ if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
9026
+ // let dom to finish build
9027
+ return;
9028
+ }
9029
+
9025
9030
  let _session = SESSION_OBJ[SESSION_ID];
9026
9031
  const _data_system = _session?.DS_GLB?.[0]?.data_system;
9027
9032
 
@@ -9023,6 +9023,11 @@ func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0
9023
9023
  }
9024
9024
  };
9025
9025
  func.UI.refs_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0]) {
9026
+ if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
9027
+ // let dom to finish build
9028
+ return;
9029
+ }
9030
+
9026
9031
  let _session = SESSION_OBJ[SESSION_ID];
9027
9032
  const _data_system = _session?.DS_GLB?.[0]?.data_system;
9028
9033