changing avg uptime name and tooltip (#1386)

This commit is contained in:
Gala
2022-06-20 17:20:59 +02:00
committed by GitHub
parent c0e178fdf7
commit 608ef779d2
2 changed files with 5 additions and 4 deletions
@@ -41,9 +41,10 @@ export const EconomicsInfoColumns: ColumnsType[] = [
},
{
field: 'avgUptime',
title: 'Avg. Uptime',
title: 'Routing Score',
flex: 1,
headerAlign: 'left',
tooltipInfo: 'Nodes average uptime in the last 24h.',
tooltipInfo:
'Nodes routing score is relative to that of the network. Each time a node is tested, the test packets have to go through the full path of the network (a gateway + 3 nodes). If a node in the path drop packets it will affect the score of other nodes in the test.',
},
];
+2 -2
View File
@@ -235,8 +235,8 @@ export const PageMixnodes: React.FC = () => {
},
{
field: 'avg_uptime',
headerName: 'Avg. Uptime',
renderHeader: () => <CustomColumnHeading headingTitle="Avg. Uptime" />,
headerName: 'Routing Score',
renderHeader: () => <CustomColumnHeading headingTitle="Routing Score" />,
headerClassName: 'MuiDataGrid-header-override',
width: 160,
headerAlign: 'left',