Skip to content

Commit

Permalink
Merge pull request #11678 from ramonlsouza/active-mic-webcam-icon
Browse files Browse the repository at this point in the history
Show unmuted microphone in video
  • Loading branch information
antobinary committed Mar 17, 2021
2 parents 483d37f + 1b8d6a0 commit 51c7ea4
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -248,6 +248,7 @@ class VideoListItem extends Component {
}
{voiceUser.muted && !voiceUser.listenOnly ? <Icon className={styles.muted} iconName="unmute_filled" /> : null}
{voiceUser.listenOnly ? <Icon className={styles.voice} iconName="listen" /> : null}
{voiceUser.joined && !voiceUser.muted ? <Icon className={styles.voice} iconName="unmute" /> : null}
</div>
}
</div>
Expand Down

0 comments on commit 51c7ea4

Please sign in to comment.