File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ export const VideoPreview: FC<Props> = ({
8080 playsInline
8181 // There's no reason for this to be focusable
8282 tabIndex = { - 1 }
83- disablePictureInPicture = { allowPip }
83+ disablePictureInPicture = { ! allowPip }
8484 />
8585 { ( ! videoEnabled || cameraIsStarting ) && (
8686 < >
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ export const MediaView: FC<Props> = ({
8686} ) => {
8787 const { t } = useTranslation ( ) ;
8888 const [ handRaiseTimerVisible ] = useSetting ( showHandRaisedTimer ) ;
89- const [ showConnectioStats ] = useSetting ( showConnectionStats ) ;
89+ const [ showConnectionStats ] = useSetting ( showConnectionStats ) ;
9090 const [ allowPip ] = useSetting ( allowPipSetting ) ;
9191
9292 const avatarSize = Math . round ( Math . min ( targetWidth , targetHeight ) / 2 ) ;
@@ -141,7 +141,7 @@ export const MediaView: FC<Props> = ({
141141 { waitingForMedia && (
142142 < div className = { styles . status } >
143143 { t ( "video_tile.waiting_for_media" ) }
144- { showConnectioStats ? " " + rtcBackendIdentity : "" }
144+ { showConnectionStats ? " " + rtcBackendIdentity : "" }
145145 </ div >
146146 ) }
147147 { ( audioStreamStats || videoStreamStats ) && (
You can’t perform that action at this time.
0 commit comments