@apia/execution 4.0.34 → 4.0.36

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/dist/index.js CHANGED
@@ -5415,7 +5415,7 @@ class Select extends FieldWithAttribute {
5415
5415
  }) {
5416
5416
  return Promise.resolve(
5417
5417
  String(
5418
- this.state.value !== void 0 ? this.state.value : possibleValue?.find((c) => c.selected)?.value || possibleValue?.[0]?.value || ""
5418
+ this.state.value !== "" ? this.state.value : possibleValue?.find((c) => c.selected)?.value || possibleValue?.[0]?.value || ""
5419
5419
  )
5420
5420
  );
5421
5421
  }