From fdb653fa1201fd286e15ec83a0cfa4a87216eaa2 Mon Sep 17 00:00:00 2001 From: Oleg Silkin Date: Fri, 29 Nov 2019 16:22:52 -0500 Subject: [PATCH] Allows for channel thumbnails to be clickable from issue #3119 --- ui/component/claimPreview/view.jsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ui/component/claimPreview/view.jsx b/ui/component/claimPreview/view.jsx index 1a4b24fba..a6c0d44d7 100644 --- a/ui/component/claimPreview/view.jsx +++ b/ui/component/claimPreview/view.jsx @@ -191,7 +191,12 @@ const ClaimPreview = forwardRef((props: Props, ref: any) => { 'claim-preview--pending': pending, })} > - {isChannel ? : } + {isChannel ? ( + + + + ) : () + }