@xuda.io/runtime-bundle 1.0.593 → 1.0.595
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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -12015,12 +12015,12 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
12015
12015
|
|
|
12016
12016
|
var found, refresh_reason, refresh_details;
|
|
12017
12017
|
if (fields_changed_arr) {
|
|
12018
|
-
if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
|
|
12019
|
-
continue;
|
|
12020
|
-
}
|
|
12021
|
-
// if (fields_changed_datasource && panel_val._ds.dsSession < Number(fields_changed_datasource)) {
|
|
12018
|
+
// if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
|
|
12022
12019
|
// continue;
|
|
12023
12020
|
// }
|
|
12021
|
+
if (fields_changed_datasource && panel_val._ds.dsSession < Number(fields_changed_datasource)) {
|
|
12022
|
+
continue;
|
|
12023
|
+
}
|
|
12024
12024
|
for (const field_id of fields_changed_arr) {
|
|
12025
12025
|
// get panel attributes
|
|
12026
12026
|
const _attributes = panel_val?.panelXuAttributes || {};
|
|
@@ -12089,6 +12089,10 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
12089
12089
|
break;
|
|
12090
12090
|
}
|
|
12091
12091
|
}
|
|
12092
|
+
|
|
12093
|
+
if (found) {
|
|
12094
|
+
break;
|
|
12095
|
+
}
|
|
12092
12096
|
}
|
|
12093
12097
|
}
|
|
12094
12098
|
|
|
@@ -9747,12 +9747,12 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9747
9747
|
|
|
9748
9748
|
var found, refresh_reason, refresh_details;
|
|
9749
9749
|
if (fields_changed_arr) {
|
|
9750
|
-
if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
|
|
9751
|
-
continue;
|
|
9752
|
-
}
|
|
9753
|
-
// if (fields_changed_datasource && panel_val._ds.dsSession < Number(fields_changed_datasource)) {
|
|
9750
|
+
// if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
|
|
9754
9751
|
// continue;
|
|
9755
9752
|
// }
|
|
9753
|
+
if (fields_changed_datasource && panel_val._ds.dsSession < Number(fields_changed_datasource)) {
|
|
9754
|
+
continue;
|
|
9755
|
+
}
|
|
9756
9756
|
for (const field_id of fields_changed_arr) {
|
|
9757
9757
|
// get panel attributes
|
|
9758
9758
|
const _attributes = panel_val?.panelXuAttributes || {};
|
|
@@ -9821,6 +9821,10 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9821
9821
|
break;
|
|
9822
9822
|
}
|
|
9823
9823
|
}
|
|
9824
|
+
|
|
9825
|
+
if (found) {
|
|
9826
|
+
break;
|
|
9827
|
+
}
|
|
9824
9828
|
}
|
|
9825
9829
|
}
|
|
9826
9830
|
|