From 4112087a4fc5a1e19f48a95e03ffdd82137cfacf Mon Sep 17 00:00:00 2001 From: paidge <paidge_cs@hotmail.com> Date: Tue, 1 Feb 2022 17:02:20 +0100 Subject: [PATCH] display input search only if more than 5 certifs --- components/certif/List.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/components/certif/List.vue b/components/certif/List.vue index e8d5206..32dfa1b 100644 --- a/components/certif/List.vue +++ b/components/certif/List.vue @@ -2,6 +2,7 @@ <div class="table-responsive" v-if="certifs.length > 0"> <input type="text" + v-if="certifs.length > 5" v-model="search" class="form-control w-75 mx-auto mb-2" :placeholder="$t('recherche.title')" /> -- GitLab