From b374e94710043e367d7b819e01cc16138d31eb75 Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Sat, 7 Dec 2019 10:56:00 -0500 Subject: [PATCH] fix small channel image previews --- ui/component/channelThumbnail/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/channelThumbnail/view.jsx b/ui/component/channelThumbnail/view.jsx index 3bdad9ec9..b153d35f7 100644 --- a/ui/component/channelThumbnail/view.jsx +++ b/ui/component/channelThumbnail/view.jsx @@ -15,7 +15,7 @@ type Props = { function ChannelThumbnail(props: Props) { const { thumbnail, uri, className, thumbnailPreview, obscure, small = false } = props; - const showThumb = !obscure && !!thumbnail; + const showThumb = (!obscure && !!thumbnail) || thumbnailPreview; // Generate a random color class based on the first letter of the channel name const { channelName } = parseURI(uri);