Merge pull request #4386 from matrix-org/t3chguy/order_match_buttons

Reverse order of they match/they don't match buttons
This commit is contained in:
Michael Telatynski
2020-04-10 15:51:28 +01:00
committed by GitHub
@@ -132,12 +132,12 @@ export default class VerificationShowSas extends React.Component {
/>; />;
} else { } else {
confirm = <React.Fragment> confirm = <React.Fragment>
<AccessibleButton onClick={this.onMatchClick} kind="primary">
{ _t("They match") }
</AccessibleButton>
<AccessibleButton onClick={this.onDontMatchClick} kind="danger"> <AccessibleButton onClick={this.onDontMatchClick} kind="danger">
{ _t("They don't match") } { _t("They don't match") }
</AccessibleButton> </AccessibleButton>
<AccessibleButton onClick={this.onMatchClick} kind="primary">
{ _t("They match") }
</AccessibleButton>
</React.Fragment>; </React.Fragment>;
} }