fix(thumbnail) Fixed screensharing indicator tooltip (#10780)

This commit is contained in:
Robert Pintilii 2022-01-12 15:32:30 +02:00 committed by GitHub
parent 38dfb47bf1
commit 0b836acad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1137,6 +1137,7 @@
"muted": "Muted", "muted": "Muted",
"videoMuted": "Camera disabled", "videoMuted": "Camera disabled",
"remoteControl": "Start / Stop remote control", "remoteControl": "Start / Stop remote control",
"screenSharing": "Participant is sharing their screen",
"show": "Show on stage", "show": "Show on stage",
"videomute": "Participant has stopped the camera" "videomute": "Participant has stopped the camera"
}, },

View File

@ -26,7 +26,7 @@ export default function ScreenShareIndicator(props: Props) {
icon = { IconShareDesktop } icon = { IconShareDesktop }
iconId = 'share-desktop' iconId = 'share-desktop'
iconSize = { 15 } iconSize = { 15 }
tooltipKey = 'videothumbnail.videomute' tooltipKey = 'videothumbnail.screenSharing'
tooltipPosition = { props.tooltipPosition } /> tooltipPosition = { props.tooltipPosition } />
); );
} }