From 7d689d029ed8d63eab045463dc13ab5a09c5b5e1 Mon Sep 17 00:00:00 2001 From: Vincenzo Scamporlino Date: Wed, 19 Jul 2023 19:50:30 +0200 Subject: [PATCH] devtools: show plugin id Signed-off-by: Vincenzo Scamporlino --- .../src/components/Content/InfoContent/InfoContent.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx b/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx index 67d34e4010..4155552383 100644 --- a/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx +++ b/plugins/devtools/src/components/Content/InfoContent/InfoContent.tsx @@ -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: '', }; }, );