2025-05-16 13:54:46 +00:00
|
|
|
@inherits MSGComponentBase
|
|
|
|
<MudTooltip Text="@T("You can switch between your chat templates here")" Placement="Placement.Top">
|
2025-05-19 15:50:23 +00:00
|
|
|
<MudMenu TransformOrigin="@Origin.BottomLeft" AnchorOrigin="Origin.TopLeft" StartIcon="@Icons.Material.Filled.RateReview" EndIcon="@Icons.Material.Filled.KeyboardArrowDown" Label="@this.CurrentChatTemplate.Name" Variant="Variant.Filled" Color="Color.Default" Class="@this.MarginClass">
|
2025-05-16 13:54:46 +00:00
|
|
|
@foreach (var chatTemplate in this.SettingsManager.ConfigurationData.ChatTemplates.GetAllChatTemplates())
|
|
|
|
{
|
|
|
|
<MudMenuItem OnClick="() => this.SelectionChanged(chatTemplate)">
|
|
|
|
@chatTemplate.Name
|
|
|
|
</MudMenuItem>
|
|
|
|
}
|
|
|
|
</MudMenu>
|
|
|
|
</MudTooltip>
|