Skip to content

Commit

Permalink
Merge pull request #87 from Dataport/fix/add-missing-aria-label
Browse files Browse the repository at this point in the history
add missing aria label
  • Loading branch information
warm-coolguy authored Jan 10, 2024
2 parents 7a6695a + aeb089d commit 70bca93
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/plugins/Fullscreen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## unpublished

- Fix: Aria-label was missing on fullscreen button.

## 1.2.0

- Feature: Improved implementation to make plugin SPA-ready.
Expand Down
5 changes: 5 additions & 0 deletions packages/plugins/Fullscreen/src/components/Fullscreen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
>
<template #activator="{ on, attrs }">
<v-btn
:aria-label="
isInFullscreen
? $t('common:plugins.fullscreen.button.tooltip.deactivate')
: $t('common:plugins.fullscreen.button.tooltip.activate')
"
:class="{ 'ma-2': renderType === 'independent' }"
color="primary"
small
Expand Down

0 comments on commit 70bca93

Please sign in to comment.