Added href attribute to <use> tags with deprecated xlinkHref attribute.

This commit is contained in:
Austin
2017-07-19 20:16:53 -05:00
parent 8775c63fb4
commit 73f89fc2fd
5 changed files with 5 additions and 5 deletions

View File

@@ -91,7 +91,7 @@ export default class Operations extends React.Component {
<button className="expand-operation" title="Expand operation" onClick={() => layoutActions.show(isShownKey, !showTag)}>
<svg className="arrow" width="20" height="20">
<use xlinkHref={showTag ? "#large-arrow-down" : "#large-arrow"} />
<use href={showTag ? "#large-arrow-down" : "#large-arrow"} xlinkHref={showTag ? "#large-arrow-down" : "#large-arrow"} />
</svg>
</button>
</h4>