From 71568c6dd475915bab5b5117c775d4f66985a596 Mon Sep 17 00:00:00 2001 From: Denis Voituron Date: Tue, 13 May 2025 09:48:28 +0200 Subject: [PATCH] Fix the Autocomplete Flipper --- src/Core/Components/List/FluentAutocomplete.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Components/List/FluentAutocomplete.razor b/src/Core/Components/List/FluentAutocomplete.razor index 3e52105360..7b1503885e 100644 --- a/src/Core/Components/List/FluentAutocomplete.razor +++ b/src/Core/Components/List/FluentAutocomplete.razor @@ -32,7 +32,7 @@ autofocus="@Autofocus" Style="@ComponentWidth"> @* Selected Items *@ - @if (this.SelectedOptions?.Any() == true || this.SelectedOption is not null) + @if ((Multiple && this.SelectedOptions?.Any() == true) || (!Multiple && this.SelectedOption is not null)) { @* Normal (single) line height *@ if (string.IsNullOrEmpty(MaxAutoHeight))