Skip to content

Commit f813e85

Browse files
committed
Couple of small misc. changes
1 parent 5c77dd7 commit f813e85

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

examples/Demo/Shared/Pages/List/Autocomplete/AutocompletePage.razor

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66

77
<h1>Autocomplete</h1>
88

9+
<blockquote>
10+
@(new MarkupString(DemoNavProvider.EditFormOffIcon))
11+
The <b>FluentAutocomplete</b> component is not yet fully compatible with the <code>EditForm</code> and <code>FluentEditForm</code> elements.
12+
Some functionalities, such as error messages, the requirement message or the validation messages are missing.
13+
</blockquote>
14+
915
<h2 id="example">Examples</h2>
1016

1117
<DemoSection Title="Default" Component="@typeof(AutocompleteDefault)" />

src/Core/Components/List/FluentSelect.razor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public partial class FluentSelect<TOption> : ListComponentBase<TOption> where TO
2020
.AddStyle($"#{Id}::part(listbox)", "position", "relative", Multiple)
2121
.AddStyle($"#{Id}::part(listbox)", "max-height", Height, !string.IsNullOrWhiteSpace(Height))
2222
.AddStyle($"#{Id}::part(listbox)", "height", "fit-content", !string.IsNullOrWhiteSpace(Height))
23-
.AddStyle($"#{Id}::part(listbox)", "z-index", ZIndex.SelectPopup.ToString())
23+
.AddStyle($"#{Id}::part(listbox)", "z-index", ZIndex.SelectPopup.ToString(), !Multiple)
2424
.AddStyle($"#{Id}::part(selected-value)", "white-space", "nowrap")
2525
.AddStyle($"#{Id}::part(selected-value)", "overflow", "hidden")
2626
.AddStyle($"#{Id}::part(selected-value)", "text-overflow", "ellipsis")

0 commit comments

Comments
 (0)