@xuda.io/runtime-bundle 1.0.698 → 1.0.699
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.
|
@@ -33966,7 +33966,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
33966
33966
|
};
|
|
33967
33967
|
const get_property_value = async function (fieldIdP, val) {
|
|
33968
33968
|
if (!val) return;
|
|
33969
|
-
var value = props[fieldIdP]
|
|
33969
|
+
var value = fieldIdP in props ? props[fieldIdP] : typeof val.defaultValue === 'function' ? val?.defaultValue?.() : val?.defaultValue;
|
|
33970
33970
|
if (val.render === 'eventId') {
|
|
33971
33971
|
value = props?.[fieldIdP]?.event;
|
|
33972
33972
|
}
|