2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 03:26:45 +00:00

Bug fix for plugin table (#8411)

- Allow "deactivation" of missing plugin
- Required before it can be deleted
This commit is contained in:
Oliver 2024-11-03 00:22:26 +11:00 committed by GitHub
parent d11b7d3a7c
commit 4308f0c2f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 />,