Skip to content

Commit

Permalink
Merge pull request #11030 from nextcloud/bugfix/11029/fix-missing-titles
Browse files Browse the repository at this point in the history
fix(UI): Fix missing headlines after vue library changed from title t…
  • Loading branch information
nickvergessen committed Nov 29, 2023
2 parents 18bb9fd + e579959 commit 41240e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit 41240e6

Please sign in to comment.