kevicency / formik-office-ui-fabric-react

💉 Instant pain reliever for using Formik with Office UI Fabric React 💉
https://kmees.github.io/formik-office-ui-fabric-react
MIT License
42 stars 13 forks source link

Dropdown value is setting key instead of text #5

Open Taerarenai opened 5 years ago

Taerarenai commented 5 years ago

Any tip on how i could change that?

voidsteed commented 5 years ago

it is already setting field as key, but if you want to set as text, you can find this file: https://github.com/kmees/formik-office-ui-fabric-react/blob/master/src/FormikDropdown.tsx

And change line 44 from "option!.key" to "option!.text" or implement your own on change function in your component

nandox5 commented 3 years ago

any idea on how to return both? {key and text} ?