Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.23.9 changes merge to master #4208

Merged
merged 12 commits into from
Dec 10, 2023
Prev Previous commit
Next Next commit
Add an aria-label to the monitor search box (#4163)
* added the `Search monitored sites` label

* rebase
  • Loading branch information
CommanderStorm authored Dec 4, 2023
commit 031947319a13c5ab21e85b9599b770a508623262
5 changes: 4 additions & 1 deletion src/components/MonitorList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions src/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@
"Pink": "Pink",
"Custom": "Custom",
"Search...": "Search…",
"Search monitored sites": "Search monitored sites",
"Avg. Ping": "Avg. Ping",
"Avg. Response": "Avg. Response",
"Entry Page": "Entry Page",
Expand Down