@xuda.io/runtime-bundle 1.0.423 → 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,10 +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
- const parent_element_ui_id = $div.data().xuPanelData.parent_element_ui_id;
27835
- if (!panels_obj[parent_element_ui_id]) {
27836
- 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] = {
27837
27836
  prog_id,
27838
27837
  panelXuAttributes,
27839
27838
  };
@@ -31669,7 +31668,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31669
31668
  };
31670
31669
 
31671
31670
  const $xu_embed_container = $('.xu_embed_container');
31672
- 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);
31673
31672
  // let inviable_panels_obj = {};
31674
31673
 
31675
31674
  for await (const field_id of fields_arr) {