@xuda.io/runtime-bundle 1.0.1004 → 1.0.1006
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.
|
@@ -34572,11 +34572,11 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
34572
34572
|
let str = '';
|
|
34573
34573
|
|
|
34574
34574
|
for (const [key, val] of Object.entries(data)) {
|
|
34575
|
-
str += val;
|
|
34575
|
+
str += typeof val !== 'undefined' ? JSON.stringify(val) : '';
|
|
34576
34576
|
}
|
|
34577
34577
|
|
|
34578
34578
|
if (typeof _ds.parentDataSourceNo !== 'undefined') {
|
|
34579
|
-
str += get_xu_render_cache_str(SESSION_ID, parentDataSourceNo);
|
|
34579
|
+
str += get_xu_render_cache_str(SESSION_ID, _ds.parentDataSourceNo);
|
|
34580
34580
|
}
|
|
34581
34581
|
|
|
34582
34582
|
return str;
|