#3110 - Fix models down arrow icon in firefox

This commit is contained in:
Owen Conti
2017-06-27 20:56:48 -06:00
parent 10c35c4be3
commit 8727754dd4
2 changed files with 2 additions and 9 deletions

View File

@@ -24,8 +24,8 @@ export default class Models extends Component {
return <section className={ showModels ? "models is-open" : "models"}>
<h4 onClick={() => layoutActions.show("models", !showModels)}>
<span>Models</span>
<svg width="20" height="20">
<use xlinkHref="#large-arrow" />
<svg className="arrow" width="20" height="20">
<use xlinkHref={showModels ? "#large-arrow-down" : "#large-arrow"} />
</svg>
</h4>
<Collapse isOpened={showModels} animated>