@xuda.io/runtime-bundle 1.0.476 → 1.0.478

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.
@@ -9098,8 +9098,12 @@ func.UI.update_xu_ref = function (SESSION_ID, dsSessionP, ref_field_id, $elm) {
9098
9098
 
9099
9099
  if ($elm) {
9100
9100
  const get_attributes = function (retry = 0) {
9101
- if (retry > 50) return;
9102
- $elm?.data()?.xuPanelWrapper?.panelXuAttributes || $elm?.data()?.xuData?.debug_info?.attribute_stat || get_attributes(retry + 1);
9101
+ if (retry > 500) return;
9102
+ $elm?.data()?.xuPanelWrapper?.panelXuAttributes ||
9103
+ $elm?.data()?.xuData?.debug_info?.attribute_stat ||
9104
+ setTimeout(() => {
9105
+ get_attributes(retry + 1);
9106
+ }, 500);
9103
9107
  };
9104
9108
 
9105
9109
  const attributes = get_attributes();
@@ -9099,8 +9099,12 @@ func.UI.update_xu_ref = function (SESSION_ID, dsSessionP, ref_field_id, $elm) {
9099
9099
 
9100
9100
  if ($elm) {
9101
9101
  const get_attributes = function (retry = 0) {
9102
- if (retry > 50) return;
9103
- $elm?.data()?.xuPanelWrapper?.panelXuAttributes || $elm?.data()?.xuData?.debug_info?.attribute_stat || get_attributes(retry + 1);
9102
+ if (retry > 500) return;
9103
+ $elm?.data()?.xuPanelWrapper?.panelXuAttributes ||
9104
+ $elm?.data()?.xuData?.debug_info?.attribute_stat ||
9105
+ setTimeout(() => {
9106
+ get_attributes(retry + 1);
9107
+ }, 500);
9104
9108
  };
9105
9109
 
9106
9110
  const attributes = get_attributes();