From 13b2752e8d609ee918edeafc3fe50ab9a5438ab6 Mon Sep 17 00:00:00 2001 From: Simounet Date: Thu, 24 Aug 2023 22:28:56 +0200 Subject: [PATCH] Autocapitalize disabled for domain input filter --- src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php index af4b74c8b..2642f9e27 100644 --- a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php +++ b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php @@ -103,6 +103,9 @@ class EntryFilterType extends AbstractType return $filterQuery->createCondition($expression); }, 'label' => 'entry.filters.domain_label', + 'attr' => [ + 'autocapitalize' => 'off', + ], ]) ->add('httpStatus', NumberFilterType::class, [ 'apply_filter' => function (QueryInterface $filterQuery, $field, $values) {