summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-01-25 06:29:11 +0100
committerJoas Schilling <coding@schilljs.com>2023-01-25 06:29:11 +0100
commit07847af337a8407c0b457d2fadd29ae66ef7a206 (patch)
treeb535a5d466479f7337fda2a84421cca913fdbc56
parentdf3841d4e596405a78fd5ac473cde5e9a679b5d6 (diff)
Fix missing aria-labels
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--src/components/RightSidebar/BreakoutRooms/BreakoutRoomsTab.vue7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/RightSidebar/BreakoutRooms/BreakoutRoomsTab.vue b/src/components/RightSidebar/BreakoutRooms/BreakoutRoomsTab.vue
index 9f19113ef..355bca381 100644
--- a/src/components/RightSidebar/BreakoutRooms/BreakoutRoomsTab.vue
+++ b/src/components/RightSidebar/BreakoutRooms/BreakoutRoomsTab.vue
@@ -25,6 +25,7 @@
<template v-if="breakoutRoomsConfigured">
<NcButton v-if="breakoutRoomsStarted"
:title="t('spreed', 'Start breakout rooms')"
+ :aria-label="t('spreed', 'Start breakout rooms')"
type="secondary"
@click="startBreakoutRooms">
<template #icon>
@@ -32,7 +33,8 @@
</template>
</NcButton>
<NcButton v-else
- :title="t('spreed', 'Start breakout rooms')"
+ :title="t('spreed', 'Stop breakout rooms')"
+ :aria-label="t('spreed', 'Stop breakout rooms')"
type="secondary"
@click="stopBreakoutRooms">
<template #icon>
@@ -56,7 +58,8 @@
</template>
</NcButton>
<NcButton v-if="breakoutRoomsConfigured"
- title="t('spreed', 'Delete breakout rooms')"
+ :title="t('spreed', 'Delete breakout rooms')"
+ :aria-label="t('spreed', 'Delete breakout rooms')"
type="tertiary-no-background"
@click="deleteBreakoutRooms">
<template #icon>