@xuda.io/runtime-bundle 1.0.586 → 1.0.588

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.
@@ -31699,7 +31699,6 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31699
31699
  };
31700
31700
 
31701
31701
  func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
31702
- return;
31703
31702
  const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $(SESSION_OBJ[SESSION_ID].root_element), false);
31704
31703
 
31705
31704
  for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
@@ -31707,7 +31706,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
31707
31706
 
31708
31707
  var found, refresh_reason, refresh_details;
31709
31708
  if (fields_changed_arr) {
31710
- if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
31709
+ if (fields_changed_datasource && panel_val._ds.dsSession < Number(fields_changed_datasource)) {
31711
31710
  continue;
31712
31711
  }
31713
31712
  for (const field_id of fields_changed_arr) {