mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +00:00
Plugin table fix (#6613)
* Fix for plugin_table - Catch potential undefined error - Reported via sentry.io * style fix * further style fixes
This commit is contained in:
parent
69871699c0
commit
dc03b33c35
@ -125,7 +125,9 @@ export function PluginDrawer({
|
|||||||
|
|
||||||
<Group spacing={'xs'}>
|
<Group spacing={'xs'}>
|
||||||
{plugin && PluginIcon(plugin)}
|
{plugin && PluginIcon(plugin)}
|
||||||
<Title order={4}>{plugin?.meta.human_name || plugin?.name}</Title>
|
<Title order={4}>
|
||||||
|
{plugin?.meta?.human_name ?? plugin?.name ?? '-'}
|
||||||
|
</Title>
|
||||||
</Group>
|
</Group>
|
||||||
|
|
||||||
<ActionDropdown
|
<ActionDropdown
|
||||||
|
Loading…
x
Reference in New Issue
Block a user