Do not show play button for undownloaded media
This commit is contained in:
parent
9a9fc60103
commit
59f8243a0d
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ export class Image extends React.Component<Props> {
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
{!pending && playIconOverlay ? (
|
{!pending && !hasNotDownloaded && playIconOverlay ? (
|
||||||
<div className="module-image__play-overlay__circle">
|
<div className="module-image__play-overlay__circle">
|
||||||
<div className="module-image__play-overlay__icon" />
|
<div className="module-image__play-overlay__icon" />
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue