Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/MediaSettings/MediaSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<template v-if="!silentCall">
<NcActionButton :close-after-click="true"
icon="icon-upload"
:title="t('spreed', 'Call without notification')"
:name="t('spreed', 'Call without notification')"
@click="silentCall= true">
{{ t('spreed', 'The conversation participants will not be notified about this call') }}
<template #icon>
Expand All @@ -174,7 +174,7 @@
<template v-else>
<NcActionButton :close-after-click="true"
icon="icon-upload"
:title="t('spreed', 'Normal call')"
:name="t('spreed', 'Normal call')"
@click="silentCall= false">
{{ t('spreed', 'The conversation participants will be notified about this call') }}
<template #icon>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NewMessage/NewMessage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<!-- Silent send -->
<NcActionButton :close-after-click="true"
icon="icon-upload"
:title="t('spreed', 'Send without notification')"
:name="t('spreed', 'Send without notification')"
@click="handleSubmit({ silent: true })">
{{ silentSendInfo }}
<template #icon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
class="right"
:container="container">
<NcActionButton v-if="canModerate && isInBreakoutRoom"
:title="sendMessageLabel"
:name="sendMessageLabel"
:aria-label="sendMessageLabel"
@click="openSendMessageDialog">
<template #icon>
Expand All @@ -74,7 +74,7 @@
{{ sendMessageLabel }}
</NcActionButton>
<NcActionButton v-if="canModerate"
:title="manageBreakoutRoomsTitle"
:name="manageBreakoutRoomsTitle"
:aria-label="manageBreakoutRoomsTitle"
@click="openParticipantsEditor">
<template #icon>
Expand Down