@xuda.io/xuda-worker-bundle-min 1.3.2445 → 1.3.2446
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/index.js +7 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -787,8 +787,14 @@ func.runtime.bind.resolve_field = async function (SESSION_ID, prog_id, dsSession
|
|
|
787
787
|
if (ret_get_value.found) {
|
|
788
788
|
_dsP = ret_get_value.dsSessionP;
|
|
789
789
|
let _ds = SESSION_OBJ[SESSION_ID].DS_GLB[_dsP];
|
|
790
|
-
_prog_id = _ds
|
|
790
|
+
_prog_id = _ds?.prog_id;
|
|
791
791
|
field_prop = await find_in_view(field_id, _prog_id);
|
|
792
|
+
if (!field_prop) {
|
|
793
|
+
field_prop = _ds?.dynamic_fields?.[field_id];
|
|
794
|
+
if (field_prop) {
|
|
795
|
+
is_dynamic_field = true;
|
|
796
|
+
}
|
|
797
|
+
}
|
|
792
798
|
}
|
|
793
799
|
}
|
|
794
800
|
}
|