From 743891aa46c687c8ba54f67f32853a79f6a72308 Mon Sep 17 00:00:00 2001 From: Thibault G Date: Wed, 9 Nov 2022 16:03:10 +0100 Subject: [PATCH] [docs] Changed meilisearch port to 7701 as 7700 is already taken on Ubuntu 22.04 --- src/Form/BuildingAddressType.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Form/BuildingAddressType.php b/src/Form/BuildingAddressType.php index 8d4222f..d26b415 100644 --- a/src/Form/BuildingAddressType.php +++ b/src/Form/BuildingAddressType.php @@ -27,9 +27,9 @@ public function configureOptions(OptionsResolver $resolver): void 'autocomplete' => false, 'class' => '', 'data-controller' => 'crovitche--swiss-geo-bundle--tom-select', - 'data-crovitche--swiss-geo-bundle--tom-select-url-value' => 'http://localhost:7700/indexes/addresses/search' + 'data-crovitche--swiss-geo-bundle--tom-select-url-value' => 'http://localhost:7701/indexes/addresses/search' ], - 'autocomplete-url' => 'http://localhost:7700/indexes/addresses/search', + 'autocomplete-url' => 'http://localhost:7701/indexes/addresses/search', 'payload-name' => 'q', 'choice_label' => static function (?BuildingAddress $address): string { $streetLocality = $address?->getStreetLocality();