Added missed tooltip to the I18N system

This commit is contained in:
Thorsten Sommer 2025-04-27 16:09:39 +02:00
parent ed58bae767
commit 28d61593a6
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5

View File

@ -102,7 +102,7 @@
@if (this.isStreaming && this.cancellationTokenSource is not null)
{
<MudTooltip Text="Stop generation" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
<MudTooltip Text="@T("Stop generation")" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
<MudIconButton Icon="@Icons.Material.Filled.Stop" Color="Color.Error" OnClick="() => this.CancelStreaming()"/>
</MudTooltip>
}