Merge pull request #3975 from matrix-org/t3chguy/right_panel_learn_more

Replace Verify button in UserInfo verification with "Learn more"
This commit is contained in:
Michael Telatynski 2020-01-29 15:27:46 +00:00 committed by GitHub
commit 9457520cc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 11 deletions

View file

@ -38,7 +38,7 @@ const EncryptionInfo = ({pending, member, onStartVerification}) => {
} else {
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
content = (
<AccessibleButton kind="primary" className="mx_UserInfo_verify" onClick={onStartVerification}>
<AccessibleButton kind="primary" className="mx_UserInfo_wideButton" onClick={onStartVerification}>
{_t("Start Verification")}
</AccessibleButton>
);