Compare commits

...

1 Commits

Author SHA1 Message Date
Erik Sundell
2b7187c36a allow extensions devtools to use the sidebar 2025-11-18 09:20:58 +01:00
2 changed files with 3 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ const PERMITTED_EXTENSION_SIDEBAR_PLUGINS = [
// Support both until that migration is complete.
'grafana-grafanadocsplugin-app',
'grafana-pathfinder-app',
'grafana-extensionsdevtools-app',
];
export type ExtensionSidebarContextType = {

View File

@@ -19,6 +19,8 @@ function getPluginIcon(pluginId?: string): string {
return 'book';
case 'grafana-investigations-app':
return 'eye';
case 'grafana-extensionsdevtools-app':
return 'plug';
default:
return 'ai-sparkle';
}