mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-04 07:05:41 +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:
		@@ -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
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user