summaryrefslogtreecommitdiff
path: root/src/components/Global
diff options
context:
space:
mode:
authorSurenNeware <sneware9@in.ibm.com>2020-11-24 20:12:42 +0300
committerDerick Montague <derick.montague@ibm.com>2020-12-02 04:15:52 +0300
commit787635a2adc8863d7198be09871087a8642b4ea9 (patch)
tree02c5309e8ef0840da4a4e607acda1f6038b22ab1 /src/components/Global
parentce7e42d27356f8d783d1a31eac922b271b35be40 (diff)
downloadwebui-vue-787635a2adc8863d7198be09871087a8642b4ea9.tar.xz
Add alignment on Event Logs page
- Align table search, count and date components on Event Logs page. Signed-off-by: Suren Neware <sneware9@in.ibm.com> Change-Id: Id681d50f57a6fca86b8d8ba57f8e3420c1a0e56e
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>