mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +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…
Reference in New Issue
Block a user