@xuda.io/runtime-bundle 1.0.617 → 1.0.619

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.
@@ -32988,7 +32988,10 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
32988
32988
  }
32989
32989
  // handle xu attributes
32990
32990
  try {
32991
- $elm.data().xuAttributes[key] = val;
32991
+ if ($elm?.data()?.xuAttributes) {
32992
+ // in some cases xu data delete in purpose when refreshing the screen
32993
+ $elm.data().xuAttributes[key] = val;
32994
+ }
32992
32995
  } catch (error) {
32993
32996
  debugger;
32994
32997
  console.error(error);