explorer: fixing colour

This commit is contained in:
gala1234
2022-05-26 12:32:21 +02:00
parent 7dd11d4602
commit 296ed47ba4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ export const MainContextProvider: React.FC = ({ children }) => {
// TODO remove hard coded API response
data.map((item) => {
const node = item;
node.stake_saturation = 0.32;
node.stake_saturation = 3.2;
return node;
});
setMixnodes({ data, isLoading: false });
+1 -1
View File
@@ -260,7 +260,7 @@ export const PageMixnodes: React.FC = () => {
sx={{
...getCellStyles(theme, params.row),
textAlign: 'left',
colour: params.value > 100 ? theme.palette.warning.main : 'inherit',
color: params.value > 100 ? theme.palette.warning.main : 'inherit',
}}
component={RRDLink}
to={`/network-components/mixnode/${params.row.identity_key}`}