Merge pull request #4455 from matrix-org/foldleft/devtool-verif-back

Add a back button to the devtools verifications panel
This commit is contained in:
Zoe 2020-04-22 10:15:05 +01:00 committed by GitHub
commit cb84904638
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -696,6 +696,9 @@ class VerificationExplorer extends React.Component {
<VerificationRequest txnId={txnId} request={request} key={txnId} />, <VerificationRequest txnId={txnId} request={request} key={txnId} />,
)} )}
</div> </div>
<div className="mx_Dialog_buttons">
<button onClick={this.props.onBack}>{_t("Back")}</button>
</div>
</div>); </div>);
} }
} }