mirror of https://github.com/vector-im/riot-web
Merge pull request #4386 from matrix-org/t3chguy/order_match_buttons
Reverse order of they match/they don't match buttonspull/21833/head
commit
52064d2fd0
|
@ -132,12 +132,12 @@ export default class VerificationShowSas extends React.Component {
|
|||
/>;
|
||||
} else {
|
||||
confirm = <React.Fragment>
|
||||
<AccessibleButton onClick={this.onMatchClick} kind="primary">
|
||||
{ _t("They match") }
|
||||
</AccessibleButton>
|
||||
<AccessibleButton onClick={this.onDontMatchClick} kind="danger">
|
||||
{ _t("They don't match") }
|
||||
</AccessibleButton>
|
||||
<AccessibleButton onClick={this.onMatchClick} kind="primary">
|
||||
{ _t("They match") }
|
||||
</AccessibleButton>
|
||||
</React.Fragment>;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue