File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export default class AuthorizationPopup extends React.Component {
2323 < h3 > Available authorizations</ h3 >
2424 < button type = "button" className = "close-modal" onClick = { this . close } >
2525 < svg width = "20" height = "20" >
26- < use xlinkHref = "#close" />
26+ < use href = "#close" xlinkHref = "#close" />
2727 </ svg >
2828 </ button >
2929 </ div >
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export default class AuthorizeBtn extends React.Component {
2525 < button className = { isAuthorized ? "btn authorize locked" : "btn authorize unlocked" } onClick = { this . onClick } >
2626 < span > Authorize</ span >
2727 < svg width = "20" height = "20" >
28- < use xlinkHref = { isAuthorized ? "#locked" : "#unlocked" } />
28+ < use href = { isAuthorized ? "#locked" : "#unlocked" } xlinkHref = { isAuthorized ? "#locked" : "#unlocked" } />
2929 </ svg >
3030 </ button >
3131 { showPopup && < AuthorizationPopup /> }
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export default class AuthorizeOperationBtn extends React.Component {
2424 return (
2525 < button className = { isAuthorized ? "authorization__btn locked" : "authorization__btn unlocked" } onClick = { this . onClick } >
2626 < svg width = "20" height = "20" >
27- < use xlinkHref = { isAuthorized ? "#locked" : "#unlocked" } />
27+ < use href = { isAuthorized ? "#locked" : "#unlocked" } xlinkHref = { isAuthorized ? "#locked" : "#unlocked" } />
2828 </ svg >
2929 </ button >
3030
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export default class Models extends Component {
2424 return < section className = { showModels ? "models is-open" : "models" } >
2525 < h4 onClick = { ( ) => layoutActions . show ( "models" , ! showModels ) } >
2626 < span > Models</ span >
27- < svg className = "arrow" width = "20" height = "20" >
27+ < svg width = "20" height = "20" >
2828 < use xlinkHref = { showModels ? "#large-arrow-down" : "#large-arrow" } />
2929 </ svg >
3030 </ h4 >
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ export default class Operations extends React.Component {
109109
110110 < button className = "expand-operation" title = "Expand operation" onClick = { ( ) => layoutActions . show ( isShownKey , ! showTag ) } >
111111 < svg className = "arrow" width = "20" height = "20" >
112- < use xlinkHref = { showTag ? "#large-arrow-down" : "#large-arrow" } />
112+ < use href = { showTag ? "#large-arrow-down" : "#large-arrow" } xlinkHref = { showTag ? "#large-arrow-down" : "#large-arrow" } />
113113 </ svg >
114114 </ button >
115115 </ h4 >
You can’t perform that action at this time.
0 commit comments