show site link in clients table

This commit is contained in:
miloschwartz
2025-02-21 22:20:19 -05:00
parent 1a63669805
commit 9f54f4d81a
5 changed files with 48 additions and 7 deletions

View File

@@ -36,6 +36,8 @@ export default async function ClientsPage(props: ClientsPageProps) {
const clientRows: ClientRow[] = clients.map((client) => {
return {
name: client.name,
siteName: client.siteName,
siteId: client.siteNiceId,
id: client.clientId,
mbIn: formatSize(client.megabytesIn || 0),
mbOut: formatSize(client.megabytesOut || 0),