Skip to content

Commit

Permalink
Bug fix for plugin table
Browse files Browse the repository at this point in the history
- Allow "deactivation" of missing plugin
- Required before it can be deleted
  • Loading branch information
SchrodingersGat committed Nov 2, 2024
1 parent 6cca66c commit 43ed51a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/frontend/src/tables/plugin/PluginListTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,7 @@ export default function PluginListTable() {

return [
{
hidden:
record.is_builtin != false ||
record.is_installed != true ||
record.active != true,
hidden: record.is_builtin != false || record.active != true,
title: t`Deactivate`,
color: 'red',
icon: <IconCircleX />,
Expand Down

0 comments on commit 43ed51a

Please sign in to comment.