소스 검색

dont show play indicator on video hero (#1207)

Bartosz Dryl 3 년 전
부모
커밋
914e49cabf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/shared/components/VideoPlayer/VideoPlayer.tsx

+ 1 - 1
src/shared/components/VideoPlayer/VideoPlayer.tsx

@@ -421,7 +421,7 @@ const VideoPlayerComponent: React.ForwardRefRenderFunction<HTMLVideoElement, Vid
 
   const showBigPlayButton = playerState === null && !isInBackground
   const showPlayerControls = !isInBackground && isLoaded && playerState
-  const showControlsIndicator = !isInBackground || playerState !== 'ended'
+  const showControlsIndicator = !isInBackground && playerState !== 'ended'
 
   return (
     <Container isFullScreen={isFullScreen} className={className} isInBackground={isInBackground}>