mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-16 16:46:26 +00:00
13 lines
437 B
Plaintext
13 lines
437 B
Plaintext
|
|
@inherits MSGComponentBase
|
||
|
|
|
||
|
|
@if (this.CanDelete)
|
||
|
|
{
|
||
|
|
<MudTooltip Text="@this.Tooltip">
|
||
|
|
<MudIconButton Icon="@Icons.Material.Filled.DeleteOutline"
|
||
|
|
Color="Color.Error"
|
||
|
|
Variant="Variant.Text"
|
||
|
|
Size="Size.Medium"
|
||
|
|
Disabled="@this.IsBlockedByActiveWork"
|
||
|
|
OnClick="@this.DeleteAssistantPluginAsync" />
|
||
|
|
</MudTooltip>
|
||
|
|
}
|