Skip to content

Commit

Permalink
Revert to image from video element
Browse files Browse the repository at this point in the history
  • Loading branch information
oysand committed Oct 24, 2022
1 parent 707b3fe commit 9545b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/VideoStream/VideoSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Icon.add({ fullscreen })
export function VideoSection({ videoStream, toggleFullScreenModeFunction }: VideoSectionProps) {
return (
<StyledVideoSection>
<video autoPlay src={videoStream.url} width="100%" height="100%" />
<img src={videoStream.url} width="100%" height="100%" alt={videoStream.name + ' video stream'} />
<FullscreenButton color="secondary" onClick={toggleFullScreenModeFunction}>
<Icon name="fullscreen" size={32} />
</FullscreenButton>
Expand Down

0 comments on commit 9545b0c

Please sign in to comment.