Skip to content

Commit 1ba9db2

Browse files
committed
Add Availability for Supernodes Table
1 parent 6b61ea4 commit 1ba9db2

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/models/commonData/tableColumns.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,14 @@ export const supernodescolumns: ColumnsType<commonTableListType> = [
542542
render: (val: any) => {
543543
return <Link href={'/blocks/' + val}>{val}</Link>
544544
}
545+
},
546+
{
547+
title: 'Availability',
548+
dataIndex: 'AvailabilityStr',
549+
ellipsis: true,
550+
render: (val) => {
551+
return val
552+
}
545553
}
546554
];
547555

0 commit comments

Comments
 (0)