mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 14:01:37 +00:00
21 lines
597 B
Plaintext
21 lines
597 B
Plaintext
<MudStack Row="true" Class="mb-3">
|
|
<MudSelect
|
|
T="string"
|
|
Value="@this.Value"
|
|
ValueChanged="@(val => this.OnValueChanged(val))"
|
|
Label="@this.Label"
|
|
Placeholder="@this.Default.Value"
|
|
AdornmentIcon="@this.Icon"
|
|
Adornment="Adornment.Start"
|
|
Variant="Variant.Outlined"
|
|
Margin="Margin.Dense"
|
|
MultiSelection="false"
|
|
>
|
|
@foreach (var item in Items)
|
|
{
|
|
<MudSelectItem Value="@item.Value">
|
|
@item.Display
|
|
</MudSelectItem>
|
|
}
|
|
</MudSelect>
|
|
</MudStack> |