mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
10 lines
538 B
Plaintext
10 lines
538 B
Plaintext
|
@using AIStudio.Settings
|
||
|
|
||
|
<MudSelect T="Profile" Strict="@true" Value="@this.Profile" ValueChanged="@this.SelectionChanged" Adornment="Adornment.Start" AdornmentIcon="@Icons.Material.Filled.Person4" Margin="Margin.Dense" Label="Select one of your profiles" Variant="Variant.Outlined" Class="mb-3" Validation="@this.Validation">
|
||
|
@foreach (var profile in this.SettingsManager.ConfigurationData.Profiles.GetAllProfiles())
|
||
|
{
|
||
|
<MudSelectItem Value="profile">
|
||
|
@profile.Name
|
||
|
</MudSelectItem>
|
||
|
}
|
||
|
</MudSelect>
|