@xuda.io/runtime-bundle 1.0.861 → 1.0.862

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.
@@ -31194,7 +31194,12 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
31194
31194
 
31195
31195
  for (const [container_xu_ui_id, val] of Object.entries(UI_WORKER_OBJ.pending_for_viewport_render)) {
31196
31196
  const height = val.base_$div.height();
31197
-
31197
+ if (height) {
31198
+ const total_height = height * val.data.length || 1;
31199
+ if (total_height > $container.height()) {
31200
+ $container.css('height', height * val.data.length);
31201
+ }
31202
+ }
31198
31203
  debugger;
31199
31204
  }
31200
31205