From af98066ef62d09b73e04520964476c1258154d32 Mon Sep 17 00:00:00 2001 From: Pierre-Jean CHANCELLIER <paidge_cs@hotmail.com> Date: Wed, 2 Feb 2022 16:36:15 +0100 Subject: [PATCH] correct btnSort in CertifList --- components/certif/List.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/certif/List.vue b/components/certif/List.vue index 8a23ec3..cfe1bf5 100644 --- a/components/certif/List.vue +++ b/components/certif/List.vue @@ -8,14 +8,14 @@ :placeholder="$t('recherche.title')" /> <table class="table table-striped table-hover"> <thead class="thead-light"> - <th class="position-relative" @click="sort('uid')"> + <th class="p-0" @click="sort('uid')"> <BtnSort :title="$t('membres')" fieldName="uid" :currentSort="currentSort" :currentSortDir="currentSortDir" /> </th> - <th class="position-relative" @click="sort('expires_on')"> + <th class="p-0" @click="sort('expires_on')"> <BtnSort class="justify-content-end" :title="$t('expire')" -- GitLab