Add an aria-label to the monitor search box (#4163)

* added the `Search monitored sites` label

* rebase
This commit is contained in:
Frank Elsinga
2023-12-04 18:15:28 +01:00
committed by GitHub
parent 74a908a069
commit 031947319a
2 changed files with 5 additions and 1 deletions

View File

@@ -16,7 +16,10 @@
</a>
<form>
<input
v-model="searchText" class="form-control search-input" :placeholder="$t('Search...')"
v-model="searchText"
class="form-control search-input"
:placeholder="$t('Search...')"
:aria-label="$t('Search monitored sites')"
autocomplete="off"
/>
</form>