I'm using a FluentUI dropdown in a reactjs office addin and would like for it to be reset when the user types in a completely different textbox. Can I get a reference to the dropdown and call some reset function?
It's a plain single-select dropdown like:
return <Dropdown
placeholder={"Pick a thing"}
label={"Things"}
options={ thingOptions }
onChange={ handleSelectThing }
>
I saw https://github.com/microsoft/fluentui/issues/5917 but it doesn't quite seem to be the same thing.