mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 19:09:06 +00:00
10 lines
554 B
Plaintext
10 lines
554 B
Plaintext
<MudTooltip Text="You can switch between your profiles here">
|
|
<MudMenu StartIcon="@Icons.Material.Filled.Person4" EndIcon="@Icons.Material.Filled.KeyboardArrowDown" Label="@this.CurrentProfile.Name" Variant="Variant.Filled" Color="Color.Default" Class="@this.MarginClass">
|
|
@foreach (var profile in this.SettingsManager.ConfigurationData.Profiles.GetAllProfiles())
|
|
{
|
|
<MudMenuItem OnClick="() => this.SelectionChanged(profile)">
|
|
@profile.Name
|
|
</MudMenuItem>
|
|
}
|
|
</MudMenu>
|
|
</MudTooltip> |