@xuda.io/runtime-bundle 1.0.583 → 1.0.584
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.
|
@@ -31741,7 +31741,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
31741
31741
|
|
|
31742
31742
|
if (found) {
|
|
31743
31743
|
refresh_reason = `field ${field_id} in progDataSource parameter_in changed`;
|
|
31744
|
-
refresh_details =
|
|
31744
|
+
refresh_details = panel_val?.prog_doc?.progDataSource;
|
|
31745
31745
|
|
|
31746
31746
|
break;
|
|
31747
31747
|
}
|
|
@@ -31764,7 +31764,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
31764
31764
|
found = progDataSource_str?.includes('@' + field_id);
|
|
31765
31765
|
if (found) {
|
|
31766
31766
|
refresh_reason = `field ${field_id} in progDataSource changed`;
|
|
31767
|
-
refresh_details =
|
|
31767
|
+
refresh_details = panel_val?.prog_doc?.progDataSource;
|
|
31768
31768
|
|
|
31769
31769
|
break;
|
|
31770
31770
|
}
|
|
@@ -31791,7 +31791,8 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
31791
31791
|
const _session = SESSION_OBJ[SESSION_ID];
|
|
31792
31792
|
if (_session.engine_mode === 'live_preview') {
|
|
31793
31793
|
console.info('========= refresh info ==============');
|
|
31794
|
-
console.info('reason:', refresh_reason
|
|
31794
|
+
console.info('reason:', refresh_reason);
|
|
31795
|
+
console.info('details::', refresh_details);
|
|
31795
31796
|
console.info('ds:', panel_val._ds);
|
|
31796
31797
|
console.info('=====================================');
|
|
31797
31798
|
}
|