Skip to content

Commit

Permalink
Merge pull request #14085 from nextcloud/bugfix/noid/add-missing-head…
Browse files Browse the repository at this point in the history
…line

fix(hpb): Add a small heading to the call note
  • Loading branch information
nickvergessen authored Jan 9, 2025
2 parents 4912387 + 6e722ab commit 3398422
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/RightSidebar/InternalSignalingHint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ const warningDescription = t('spreed', 'Calls without High-performance backend c
.replace('{linkstart}', '<a target="_blank" rel="noreferrer nofollow" class="external" href="https://portal.nextcloud.com/article/Nextcloud-Talk/High-Performance-Backend/Installation-of-Nextcloud-Talk-High-Performance-Backend">')
.replace('{linkend}', ' ↗</a>')

const warningTitle = t('spreed', 'Talk setup incomplete')

onMounted(() => {
EventBus.on('signaling-internal-show-warning', showInternalWarning)
})
Expand All @@ -55,6 +57,7 @@ const showInternalWarning = () => {
<template #icon>
<IconNetworkStrength2Alert fill-color="var(--color-warning)" :size="20" />
</template>
<strong>{{ warningTitle }}</strong>
<!-- eslint-disable-next-line vue/no-v-html -->
<p v-html="warningDescription" />
</NcNoteCard>
Expand Down

0 comments on commit 3398422

Please sign in to comment.