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:
Oliver 2024-03-02 10:36:01 +11:00 committed by GitHub
parent 69871699c0
commit dc03b33c35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -125,7 +125,9 @@ export function PluginDrawer({
<Group spacing={'xs'}>
{plugin && PluginIcon(plugin)}
<Title order={4}>{plugin?.meta.human_name || plugin?.name}</Title>
<Title order={4}>
{plugin?.meta?.human_name ?? plugin?.name ?? '-'}
</Title>
</Group>
<ActionDropdown