From 4084329193073cf70338facea622a025ff8167eb Mon Sep 17 00:00:00 2001 From: Hugo Kiyodi Oshiro Date: Tue, 29 Aug 2023 16:38:31 +0200 Subject: [PATCH] Plugins: Add dependency column in version table (#73991) * Plugins: add dependency column in version table * Closes #44052 --- public/app/features/plugins/admin/components/VersionList.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/app/features/plugins/admin/components/VersionList.tsx b/public/app/features/plugins/admin/components/VersionList.tsx index 7224bd35065..42298eb31a4 100644 --- a/public/app/features/plugins/admin/components/VersionList.tsx +++ b/public/app/features/plugins/admin/components/VersionList.tsx @@ -26,6 +26,7 @@ export const VersionList = ({ versions = [], installedVersion }: Props) => { Version Last updated + Grafana Dependency @@ -46,6 +47,8 @@ export const VersionList = ({ versions = [], installedVersion }: Props) => { {dateTimeFormatTimeAgo(version.createdAt)} + {/* Dependency */} + {version.grafanaDependency || 'N/A'} ); })}