Skip to content
Snippets Groups Projects
Commit 9f0a7ea0 authored by James Jung's avatar James Jung
Browse files

chg mute/unmute icon

parent 466bcf05
No related branches found
No related tags found
No related merge requests found
......@@ -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 }),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment