From b866c16071e81c5ed1c35e1cf5f10b80db4c2dc5 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Thu, 19 Dec 2019 16:28:44 +0000 Subject: [PATCH] show cancellation --- src/components/views/right_panel/VerificationPanel.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/views/right_panel/VerificationPanel.js b/src/components/views/right_panel/VerificationPanel.js index 2879916f37..c3fce4314b 100644 --- a/src/components/views/right_panel/VerificationPanel.js +++ b/src/components/views/right_panel/VerificationPanel.js @@ -49,6 +49,8 @@ export default class VerificationPanel extends React.PureComponent { } } else if (request.done) { return

verified {request.otherUserId}!!

; + } else if (request.cancelled) { + return

cancelled by {request.cancellingUserId}!

; } }