Fixed config plugins action column

This commit is contained in:
Thorsten Sommer 2025-06-01 20:43:59 +02:00
parent 1fb04a73cf
commit 86f52550e2
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -63,7 +63,7 @@
</MudStack> </MudStack>
</MudTd> </MudTd>
<MudTd> <MudTd>
@if (!context.IsInternal) @if (context is { IsInternal: false, Type: not PluginType.CONFIGURATION })
{ {
var isEnabled = this.SettingsManager.IsPluginEnabled(context); var isEnabled = this.SettingsManager.IsPluginEnabled(context);
<MudTooltip Text="@(isEnabled ? T("Disable plugin") : T("Enable plugin"))"> <MudTooltip Text="@(isEnabled ? T("Disable plugin") : T("Enable plugin"))">