1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

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

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>);
} }
} }