@xuda.io/runtime-bundle 1.0.1071 → 1.0.1072
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
|
@@ -12672,7 +12672,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12672
12672
|
if (new_$div) {
|
|
12673
12673
|
// validate if $div contains fields from parent ds
|
|
12674
12674
|
const parent_fields = get_parent_ds_fields(SESSION_ID, paramsP.dsSessionP);
|
|
12675
|
-
const div_str = JSON.stringify(new_$div.
|
|
12675
|
+
const div_str = JSON.stringify(new_$div.html());
|
|
12676
12676
|
|
|
12677
12677
|
for (const [key, val] of Object.entries(parent_fields)) {
|
|
12678
12678
|
if (div_str.includes('@' + key)) {
|
|
@@ -10397,7 +10397,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10397
10397
|
if (new_$div) {
|
|
10398
10398
|
// validate if $div contains fields from parent ds
|
|
10399
10399
|
const parent_fields = get_parent_ds_fields(SESSION_ID, paramsP.dsSessionP);
|
|
10400
|
-
const div_str = JSON.stringify(new_$div.
|
|
10400
|
+
const div_str = JSON.stringify(new_$div.html());
|
|
10401
10401
|
|
|
10402
10402
|
for (const [key, val] of Object.entries(parent_fields)) {
|
|
10403
10403
|
if (div_str.includes('@' + key)) {
|