client olm version show in the table

This commit is contained in:
Pallavi Kumari
2025-10-23 00:55:48 +05:30
parent 2c502ec764
commit 84731bdc19
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,
};
});