mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-12 20:52:11 +00:00
14 lines
451 B
Plaintext
14 lines
451 B
Plaintext
@inherits MSGComponentBase
|
|
|
|
@if (this.CanDelete)
|
|
{
|
|
<MudTooltip Text="@T("Delete configuration plugin")">
|
|
<MudIconButton Icon="@Icons.Material.Filled.DeleteOutline"
|
|
Color="Color.Error"
|
|
Variant="Variant.Text"
|
|
Size="Size.Medium"
|
|
Disabled="@this.isDeleting"
|
|
OnClick="@this.DeleteConfigurationPluginAsync" />
|
|
</MudTooltip>
|
|
}
|