mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Plugins: Add dependency column in version table (#73991)
* Plugins: add dependency column in version table * Closes #44052
This commit is contained in:
parent
ab7e655737
commit
4084329193
@ -26,6 +26,7 @@ export const VersionList = ({ versions = [], installedVersion }: Props) => {
|
||||
<tr>
|
||||
<th>Version</th>
|
||||
<th>Last updated</th>
|
||||
<th>Grafana Dependency</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -46,6 +47,8 @@ export const VersionList = ({ versions = [], installedVersion }: Props) => {
|
||||
<td className={isInstalledVersion ? styles.currentVersion : ''}>
|
||||
{dateTimeFormatTimeAgo(version.createdAt)}
|
||||
</td>
|
||||
{/* Dependency */}
|
||||
<td className={isInstalledVersion ? styles.currentVersion : ''}>{version.grafanaDependency || 'N/A'}</td>
|
||||
</tr>
|
||||
);
|
||||
})}
|
||||
|
Loading…
Reference in New Issue
Block a user