@xuda.io/runtime-bundle 1.0.424 → 1.0.425

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.
@@ -27830,9 +27830,9 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
27830
27830
  if (!ignore_disableAutoRefresh && prog_obj.properties.disableAutoRefresh) {
27831
27831
  continue;
27832
27832
  }
27833
-
27834
- if (!panels_obj[$div.attr('xu-ui-id')]) {
27835
- panels_obj[$div.attr('xu-ui-id')] = {
27833
+ const xu_ui_id = $div.attr('xu-ui-id');
27834
+ if (!panels_obj[xu_ui_id]) {
27835
+ panels_obj[xu_ui_id] = {
27836
27836
  prog_id,
27837
27837
  panelXuAttributes,
27838
27838
  };
@@ -31668,7 +31668,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31668
31668
  };
31669
31669
 
31670
31670
  const $xu_embed_container = $('.xu_embed_container');
31671
- const panels_obj = func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
31671
+ const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $xu_embed_container, true);
31672
31672
  // let inviable_panels_obj = {};
31673
31673
 
31674
31674
  for await (const field_id of fields_arr) {