Merge pull request #1732 from Pallavikumarimdb/feat/show-update-for-client-olm

Client olm version show in the table with an update prompt
This commit is contained in:
Owen Schwartz
2025-10-25 16:23:51 -07:00
committed by GitHub
4 changed files with 165 additions and 10 deletions

View File

@@ -44,7 +44,9 @@ export default async function ClientsPage(props: ClientsPageProps) {
mbIn: formatSize(client.megabytesIn || 0),
mbOut: formatSize(client.megabytesOut || 0),
orgId: params.orgId,
online: client.online
online: client.online,
olmVersion: client.olmVersion || undefined,
olmUpdateAvailable: client.olmUpdateAvailable || false,
};
});