diff --git a/frontend/src/components/App/PluginSettings/PluginSettings.tsx b/frontend/src/components/App/PluginSettings/PluginSettings.tsx index 515fa26865a..0b6b1ef2893 100644 --- a/frontend/src/components/App/PluginSettings/PluginSettings.tsx +++ b/frontend/src/components/App/PluginSettings/PluginSettings.tsx @@ -268,7 +268,7 @@ export function PluginSettingsPure(props: PluginSettingsPureProps) { header: t('translation|Type'), accessorFn: (plugin: PluginInfo) => plugin.type || 'unknown', Cell: ({ row: { original: plugin } }: { row: MRT_Row }) => { - const typeLabels: Record = { + const typeLabels: Record = { development: { label: t('translation|Development'), color: 'primary', @@ -276,6 +276,10 @@ export function PluginSettingsPure(props: PluginSettingsPureProps) { user: { label: t('translation|User-installed'), color: 'info', + sx: { + backgroundColor: '#015493', + color: '#ffffff', + }, }, shipped: { label: t('translation|Shipped'), @@ -283,7 +287,14 @@ export function PluginSettingsPure(props: PluginSettingsPureProps) { }, }; const typeInfo = typeLabels[plugin.type || 'shipped']; - return ; + return ( + + ); }, }, {