summaryrefslogtreecommitdiffstats
path: root/src/components/TopBar/TopBar.vue
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-02-01 16:04:34 +0100
committerVincent Petry <vincent@nextcloud.com>2021-02-01 16:04:34 +0100
commit484a2235a84d067f76c1a09e82318dbd61c02516 (patch)
tree891310535bfd21fb344e1a6588a415d37c062fff /src/components/TopBar/TopBar.vue
parent8a9f63e9b931ca4f31604a45b0b21a8159bdfbf6 (diff)
Replace mute icon with material design icon
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'src/components/TopBar/TopBar.vue')
-rw-r--r--src/components/TopBar/TopBar.vue8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/TopBar/TopBar.vue b/src/components/TopBar/TopBar.vue
index 5070bccfd..de404b4c7 100644
--- a/src/components/TopBar/TopBar.vue
+++ b/src/components/TopBar/TopBar.vue
@@ -72,9 +72,13 @@
v-if="showModerationOptions && canFullModerate && isInCall">
<ActionSeparator />
<ActionButton
- icon="icon-audio"
:close-after-click="true"
@click="forceMuteOthers">
+ <MicrophoneOff
+ slot="icon"
+ :size="16"
+ decorative
+ title="" />
{{ t('spreed', 'Mute others') }}
</ActionButton>
</template>
@@ -106,6 +110,7 @@ import CallButton from './CallButton'
import BrowserStorage from '../../services/BrowserStorage'
import ActionLink from '@nextcloud/vue/dist/Components/ActionLink'
import ActionSeparator from '@nextcloud/vue/dist/Components/ActionSeparator'
+import MicrophoneOff from 'vue-material-design-icons/MicrophoneOff'
import { CONVERSATION, PARTICIPANT } from '../../constants'
import { generateUrl } from '@nextcloud/router'
import { callParticipantCollection } from '../../utils/webrtc/index'
@@ -120,6 +125,7 @@ export default {
ActionLink,
CallButton,
ActionSeparator,
+ MicrophoneOff,
},
props: {