fix typo (#25)

fix typo 
https://github.com/ohmyform/ohmyform/issues/96
This commit is contained in:
Michael Schramm 2020-06-15 07:51:34 +02:00 committed by GitHub
parent a8f90d6bf1
commit 3937e584ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
### Changed
### Fixed
- typo in dropdown options https://github.com/ohmyform/ohmyform/issues/96
### Security
## [0.9.5] - 2020-06-10

View File

@ -26,7 +26,7 @@ export const DropdownType: React.FC<FieldTypeProps> = ({ field, design }) => {
.filter((option) => option.key === null)
.map((option) => (
<Select.Option value={option.value} key={option.value}>
OK{option.title || option.value}
{option.title || option.value}
</Select.Option>
))}
</StyledSelect>