devtools: show plugin id

Signed-off-by: Vincenzo Scamporlino <vincenzos@spotify.com>
This commit is contained in:
Vincenzo Scamporlino
2023-07-19 19:50:30 +02:00
committed by Patrik Oldsberg
parent 7b7af928ec
commit 7d689d029e
@@ -80,10 +80,10 @@ export const InfoContent = () => {
const plugins = getAvailablePlugins();
const availablePlugins: PackageDependency[] = plugins.map(
({ name, components }) => {
({ name, plugin }) => {
return {
name,
versions: Object.keys(components).toString(),
name: `${name} (${plugin.getId()})`,
versions: '',
};
},
);