From 79e6cb47c2d5c5a35cafe3a304ccdfbad514334a Mon Sep 17 00:00:00 2001 From: Samuel-Zacharie FAURE Date: Mon, 1 Jun 2026 07:35:39 -0300 Subject: [PATCH] fix: uniformize access type filter labels with API card MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes the 'Modalités d'accès' filter labels to match the API card: - Ouvert sous condition => Ouvert avec un compte - Accessible sous habilitation => Accès restreint API-6767 --- .../src/components/Search/Filter/AccessTypeFilter.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datagouv-components/src/components/Search/Filter/AccessTypeFilter.vue b/datagouv-components/src/components/Search/Filter/AccessTypeFilter.vue index e65e93d97..8bf6dd8a8 100644 --- a/datagouv-components/src/components/Search/Filter/AccessTypeFilter.vue +++ b/datagouv-components/src/components/Search/Filter/AccessTypeFilter.vue @@ -31,7 +31,7 @@ const { t } = useTranslation() const options = [ { value: 'open', label: t('Téléchargement libre') }, - { value: 'open_with_account', label: t('Ouvert sous condition') }, - { value: 'restricted', label: t('Accessible sous habilitation') }, + { value: 'open_with_account', label: t('Ouvert avec un compte') }, + { value: 'restricted', label: t('Accès restreint') }, ]