summaryrefslogtreecommitdiff
path: root/src/components/Global
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global')
-rw-r--r--src/components/Global/Search.vue3
-rw-r--r--src/components/Global/TableCellCount.vue2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Global/Search.vue b/src/components/Global/Search.vue
index d472c0c9..6029f4b7 100644
--- a/src/components/Global/Search.vue
+++ b/src/components/Global/Search.vue
@@ -3,7 +3,7 @@
<b-form-group
:label="$t('global.form.search')"
:label-for="`searchInput-${_uid}`"
- label-sr-only
+ label-class="invisible"
class="mb-2"
>
<b-input-group size="md" class="align-items-center">
@@ -16,6 +16,7 @@
v-model="filter"
class="search-input"
type="text"
+ :aria-label="$t('global.form.search')"
:placeholder="placeholder"
@input="onChangeInput"
>
diff --git a/src/components/Global/TableCellCount.vue b/src/components/Global/TableCellCount.vue
index 75617093..acb4d443 100644
--- a/src/components/Global/TableCellCount.vue
+++ b/src/components/Global/TableCellCount.vue
@@ -1,5 +1,5 @@
<template>
- <div class="mt-2 d-flex flex-column justify-content-end">
+ <div class="mt-2">
<p v-if="!filterActive">
{{ $t('global.table.items', { count: totalNumberOfCells }) }}
</p>