diff --git a/CHANGELOG.md b/CHANGELOG.md index 855cef8..fdc42a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/components/form/types/dropdown.type.tsx b/components/form/types/dropdown.type.tsx index 55de2a5..172d0d6 100644 --- a/components/form/types/dropdown.type.tsx +++ b/components/form/types/dropdown.type.tsx @@ -26,7 +26,7 @@ export const DropdownType: React.FC = ({ field, design }) => { .filter((option) => option.key === null) .map((option) => ( - OK{option.title || option.value} + {option.title || option.value} ))}