diff --git a/src/files-and-videos/videos-page/VideoThumbnail.jsx b/src/files-and-videos/videos-page/VideoThumbnail.jsx
index 2929c6d32..fb7bf6205 100644
--- a/src/files-and-videos/videos-page/VideoThumbnail.jsx
+++ b/src/files-and-videos/videos-page/VideoThumbnail.jsx
@@ -48,21 +48,30 @@ const VideoThumbnail = ({
const isFailed = VIDEO_FAILURE_STATUSES.includes(status);
const failedMessage = intl.formatMessage(messages.failedCheckboxLabel);
- const showThumbnail = allowThumbnailUpload && thumbnail && isUploaded;
+ const showThumbnail = allowThumbnailUpload && isUploaded;
return (
- {allowThumbnailUpload && showThumbnail &&
}
+ {allowThumbnailUpload && isUploaded &&
}
{showThumbnail && !thumbnailError && pageLoadStatus === RequestStatus.SUCCESSFUL ? (
<>
-
setThumbnailError(true)}
- />
+ { thumbnail ? (
+ setThumbnailError(true)}
+ />
+ ) : (
+
+
+
+ )}