From 86b1fdaa8ecb8ee55f50cae8e4eb0b802048695b Mon Sep 17 00:00:00 2001 From: stlgaits Date: Tue, 2 Jun 2026 12:28:27 +0200 Subject: [PATCH] docs(cookbook): fix broken tabs in autocompletes cookbook --- .../admin_panel/using-autocompletes.md | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/cookbook/admin_panel/using-autocompletes.md b/docs/cookbook/admin_panel/using-autocompletes.md index ab8473b7..65865149 100644 --- a/docs/cookbook/admin_panel/using-autocompletes.md +++ b/docs/cookbook/admin_panel/using-autocompletes.md @@ -19,7 +19,7 @@ public function getParent(): string ``` - However, if your autocomplete filter requires fetching data from another entity, you will need to use a `BaseEntityAutocompleteType` in order to fetch your options via AJAX. +However, if your autocomplete filter requires fetching data from another entity, you will need to use a `BaseEntityAutocompleteType` in order to fetch your options via AJAX. All you need to start leveraging this functionality is a bit of routing config. @@ -101,10 +101,10 @@ final class SpeakerAutocompleteType extends AbstractType ``` {% endcode %} -Then, you need to create your grid filter. +Then, you need to create your custom grid filter. {% tabs %} -{% tab title="SyliusGridBundle v1.14" %} +{% tab title="AsFilter attribute - SyliusGridBundle v1.14+" %} {% code title="src/Grid/Filter/SpeakerFilter.php" lineNumbers="true" %} ```php