mirror of
https://github.com/inventree/InvenTree.git
synced 2026-07-18 04:33:48 +00:00
[bug] Plugin load fix (#12329)
* Update plugin name * Backup accessor for plugin name * Add null check for plg_db
This commit is contained in:
@@ -85,10 +85,12 @@ export default function PluginListTable() {
|
||||
return;
|
||||
}
|
||||
|
||||
const name: string = record.name || record.meta?.human_name;
|
||||
|
||||
return (
|
||||
<Group justify='left'>
|
||||
<PluginIcon plugin={record} />
|
||||
<Text>{record.name}</Text>
|
||||
<Text size='sm'>{name}</Text>
|
||||
</Group>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user