AI-Studio/app/MindWork AI Studio/Components/PluginDeleteAction.razor
2026-08-09 16:57:54 +02:00

13 lines
449 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.isDeleting || this.IsBlockedByActiveWork)"
OnClick="@this.DeletePluginAsync" />
</MudTooltip>
}