display raw bond instead of self %

This commit is contained in:
Gala
2022-09-13 17:00:37 +02:00
parent 124103d51b
commit 1af1370f23
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -188,7 +188,7 @@ export const PageMixnodes: React.FC = () => {
/>
),
headerClassName: 'MuiDataGrid-header-override',
width: 190,
width: 185,
headerAlign: 'left',
renderCell: (params: GridRenderCellParams) => (
<MuiLink
@@ -205,10 +205,10 @@ export const PageMixnodes: React.FC = () => {
},
{
field: 'self_percentage',
headerName: 'Self %',
width: 110,
headerName: 'Raw Bond',
width: 140,
headerClassName: 'MuiDataGrid-header-override',
renderHeader: () => <CustomColumnHeading headingTitle="Self %" />,
renderHeader: () => <CustomColumnHeading headingTitle="Raw Bond" tooltipInfo="Node operator's share of stake." />,
type: 'number',
headerAlign: 'left',
renderCell: (params: GridRenderCellParams) => (
@@ -231,7 +231,7 @@ export const PageMixnodes: React.FC = () => {
/>
),
headerClassName: 'MuiDataGrid-header-override',
width: 165,
width: 160,
headerAlign: 'left',
renderCell: (params: GridRenderCellParams) => (
<MuiLink
@@ -253,7 +253,7 @@ export const PageMixnodes: React.FC = () => {
/>
),
headerClassName: 'MuiDataGrid-header-override',
width: 160,
width: 165,
headerAlign: 'left',
renderCell: (params: GridRenderCellParams) => (
<MuiLink
+1 -1
View File
@@ -4,7 +4,7 @@
the theme declaration in index.tsx or the style prop
in <DataGrid /> */
.MuiDataGrid-sortIcon, .MuiDataGrid-menuIcon {
.MuiDataGrid-sortIcon, .MuiDataGrid-menuIcon, .MuiDataGrid-iconButtonContainer{
display: none !important;
}