diff --git a/src/components/topbar/ActionBarButtons.vue b/src/components/topbar/ActionBarButtons.vue index 81b5c42ad0..c7bf82113f 100644 --- a/src/components/topbar/ActionBarButtons.vue +++ b/src/components/topbar/ActionBarButtons.vue @@ -4,7 +4,7 @@ v-for="(button, index) in actionBarButtonStore.buttons" :key="index" v-tooltip.bottom="button.tooltip" - :label="button.label" + :label="isMobile ? undefined : button.label" :aria-label="button.tooltip || button.label" :class="button.class" text @@ -21,9 +21,13 @@