diff --git a/react/features/connection-indicator/components/web/ConnectionIndicatorIcon.js b/react/features/connection-indicator/components/web/ConnectionIndicatorIcon.js index 40ed4cab8..0e6a82487 100644 --- a/react/features/connection-indicator/components/web/ConnectionIndicatorIcon.js +++ b/react/features/connection-indicator/components/web/ConnectionIndicatorIcon.js @@ -54,8 +54,8 @@ export const ConnectionIndicatorIcon = ({ const dispatch = useDispatch(); const sourceName = track?.jitsiTrack?.getSourceName(); - const handleTrackStreamingStatusChanged = streamingStatus => { - dispatch(trackStreamingStatusChanged(track.jitsiTrack, streamingStatus)); + const handleTrackStreamingStatusChanged = (jitsiTrack, streamingStatus) => { + dispatch(trackStreamingStatusChanged(jitsiTrack, streamingStatus)); }; // TODO: replace this with a custom hook to be reused where track streaming status is needed. diff --git a/react/features/filmstrip/components/web/FakeScreenShareParticipant.js b/react/features/filmstrip/components/web/FakeScreenShareParticipant.js index b51561920..90451912b 100644 --- a/react/features/filmstrip/components/web/FakeScreenShareParticipant.js +++ b/react/features/filmstrip/components/web/FakeScreenShareParticipant.js @@ -77,6 +77,11 @@ type Props = { */ styles: Object, + /** + * The type of thumbnail. + */ + thumbnailType: string, + /** * JitsiTrack instance. */ @@ -97,7 +102,8 @@ const FakeScreenShareParticipant = ({ onTouchStart, participantId, styles, - videoTrack + videoTrack, + thumbnailType }: Props) => { const currentLayout = useSelector(getCurrentLayout); const videoTrackId = videoTrack?.jitsiTrack?.getId(); @@ -137,7 +143,8 @@ const FakeScreenShareParticipant = ({ currentLayout = { currentLayout } isFakeScreenShareParticipant = { true } isHovered = { isHovered } - participantId = { participantId } /> + participantId = { participantId } + thumbnailType = { thumbnailType } />
{ if (_isFakeScreenShareParticipant) { const { isHovered } = this.state; - const { _videoTrack, _isMobile, classes } = this.props; + const { _videoTrack, _isMobile, classes, _thumbnailType } = this.props; return ( { onTouchStart = { this._onTouchStart } participantId = { _participant.id } styles = { this._getStyles() } + thumbnailType = { _thumbnailType } videoTrack = { _videoTrack } /> ); }