@xuda.io/runtime-bundle 1.0.335 → 1.0.337

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.
@@ -31593,7 +31593,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31593
31593
  const _source_xuAttributes = _$callingContainer.data()?.xuAttributes;
31594
31594
  if (_source_xuAttributes) {
31595
31595
  for (const [attr, value] of Object.entries(_source_xuAttributes)) {
31596
- if (value?.includes(val_field)) {
31596
+ if (value && typeof value === 'string' && value.includes(val_field)) {
31597
31597
  const pattern = /xu-exp:(\w+)/;
31598
31598
  const match = attr.match(pattern);
31599
31599
  if (match) {
@@ -31732,6 +31732,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31732
31732
  // xu-for
31733
31733
  selectors = {};
31734
31734
  get_selectors();
31735
+ console.log('selectors', selectors);
31735
31736
  let refreshed_ids = [];
31736
31737
  // handle xu-for
31737
31738
  let parent_element_ui_id;