1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

show cancellation

This commit is contained in:
Bruno Windels
2019-12-19 16:28:44 +00:00
parent db17321777
commit b866c16071

View File

@@ -49,6 +49,8 @@ export default class VerificationPanel extends React.PureComponent {
} }
} else if (request.done) { } else if (request.done) {
return <p>verified {request.otherUserId}!!</p>; return <p>verified {request.otherUserId}!!</p>;
} else if (request.cancelled) {
return <p>cancelled by {request.cancellingUserId}!</p>;
} }
} }