Merge pull request #3758 from matrix-org/dbkr/hide_verify_if_verified
Don't show the 'verify' button if the user is verifiedpull/21833/head
						commit
						25f59ed43d
					
				|  | @ -1286,11 +1286,20 @@ const UserInfo = ({user, groupId, roomId, onClose}) => { | |||
| 
 | ||||
|     const devicesSection = isRoomEncrypted ? | ||||
|         (<DevicesSection loading={devices === undefined} devices={devices} userId={user.userId} />) : null; | ||||
| 
 | ||||
|     const userVerified = cli.checkUserTrust(user.userId).isVerified(); | ||||
|     let verifyButton; | ||||
|     if (!userVerified) { | ||||
|         verifyButton = <AccessibleButton className="mx_UserInfo_verify" onClick={() => verifyDevice(user.userId, null)}> | ||||
|             {_t("Verify")} | ||||
|         </AccessibleButton>; | ||||
|     } | ||||
| 
 | ||||
|     const securitySection = ( | ||||
|         <div className="mx_UserInfo_container"> | ||||
|             <h3>{ _t("Security") }</h3> | ||||
|             <p>{ text }</p> | ||||
|             <AccessibleButton className="mx_UserInfo_verify" onClick={() => verifyDevice(user.userId, null)}>{_t("Verify")}</AccessibleButton> | ||||
|             {verifyButton} | ||||
|             { devicesSection } | ||||
|         </div> | ||||
|     ); | ||||
|  |  | |||
|  | @ -1124,8 +1124,8 @@ | |||
|     "This client does not support end-to-end encryption.": "This client does not support end-to-end encryption.", | ||||
|     "Messages in this room are not end-to-end encrypted.": "Messages in this room are not end-to-end encrypted.", | ||||
|     "Messages in this room are end-to-end encrypted.": "Messages in this room are end-to-end encrypted.", | ||||
|     "Security": "Security", | ||||
|     "Verify": "Verify", | ||||
|     "Security": "Security", | ||||
|     "Sunday": "Sunday", | ||||
|     "Monday": "Monday", | ||||
|     "Tuesday": "Tuesday", | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 David Baker
						David Baker