@xuda.io/runtime-bundle 1.0.595 → 1.0.596
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
|
@@ -12018,7 +12018,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
12018
12018
|
// if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
|
|
12019
12019
|
// continue;
|
|
12020
12020
|
// }
|
|
12021
|
-
if (fields_changed_datasource && panel_val._ds.dsSession
|
|
12021
|
+
if (fields_changed_datasource && panel_val._ds.dsSession <= Number(fields_changed_datasource)) {
|
|
12022
12022
|
continue;
|
|
12023
12023
|
}
|
|
12024
12024
|
for (const field_id of fields_changed_arr) {
|
|
@@ -9750,7 +9750,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9750
9750
|
// if (fields_changed_datasource && panel_val._ds.dsSession < fields_changed_datasource) {
|
|
9751
9751
|
// continue;
|
|
9752
9752
|
// }
|
|
9753
|
-
if (fields_changed_datasource && panel_val._ds.dsSession
|
|
9753
|
+
if (fields_changed_datasource && panel_val._ds.dsSession <= Number(fields_changed_datasource)) {
|
|
9754
9754
|
continue;
|
|
9755
9755
|
}
|
|
9756
9756
|
for (const field_id of fields_changed_arr) {
|