I have products component which passes props to filters component thus filters component renders semantic-ui dropdowns filled up with passed props.
After change selection on some filter semantic sets state of dropdown to selected value.
"Clear all" button updates products and filters components but leaves dropdowns untouched as their state remains untouched. I've tried to pass into dropdowns some new custom props but didn't succeed.
Filters being rendered like so -

So the question is - how to unset value of semantic's dropdown?

