Merge pull request #5857 from musickiper/chg-mute-user-icon

change mute/unmute icon
This commit is contained in:
Anton Georgiev 2018-07-11 15:34:03 -04:00 committed by GitHub
commit 4325cd1a5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,12 +169,12 @@ class UserParticipants extends Component {
mute: {
label: () => intl.formatMessage(intlMessages.MuteUserAudioLabel),
handler: user => toggleVoice(user.id),
icon: 'audio_off',
icon: 'mute',
},
unmute: {
label: () => intl.formatMessage(intlMessages.UnmuteUserAudioLabel),
handler: user => toggleVoice(user.id),
icon: 'audio_on',
icon: 'unmute',
},
promote: {
label: user => intl.formatMessage(intlMessages.PromoteUserLabel, { 0: user.name }),