From ad1dc10dcd6071209b63800c77f01cb54eb21422 Mon Sep 17 00:00:00 2001 From: baxy Date: Thu, 6 Jun 2019 21:58:22 +0300 Subject: [PATCH] Another small fix --- app/components/NetStats/HistoricalNodesList/index.js | 2 +- app/components/NetStats/NodeModal/Header/index.js | 2 +- app/components/NetStats/NodesList/index.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/NetStats/HistoricalNodesList/index.js b/app/components/NetStats/HistoricalNodesList/index.js index e76a821..80e0539 100644 --- a/app/components/NetStats/HistoricalNodesList/index.js +++ b/app/components/NetStats/HistoricalNodesList/index.js @@ -34,7 +34,7 @@ export default class HistoricalNodesList extends React.Component { extraProps: {}, }, { id: ((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? 'isValidator' : 'isMining'), - name: ((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? 'Is Validator' : 'Is mining'), + name: ((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? 'Is validator' : 'Is mining'), width: 70, extraProps: {}, ascendingOrder: true, diff --git a/app/components/NetStats/NodeModal/Header/index.js b/app/components/NetStats/NodeModal/Header/index.js index 45cd6db..15947a5 100644 --- a/app/components/NetStats/NodeModal/Header/index.js +++ b/app/components/NetStats/NodeModal/Header/index.js @@ -196,7 +196,7 @@ class Header extends React.Component { {latency} - {((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? 'Is Validator' : 'Is mining')} + {((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? 'Is validator' : 'Is mining')} {((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? isValidator : mining)} diff --git a/app/components/NetStats/NodesList/index.js b/app/components/NetStats/NodesList/index.js index 069bc5b..57306c1 100644 --- a/app/components/NetStats/NodesList/index.js +++ b/app/components/NetStats/NodesList/index.js @@ -33,7 +33,7 @@ export default class NodesList extends React.Component { extraProps: {}, }, { id: ((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? 'isValidator' : 'isMining'), - name: ((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? 'Is Validator' : 'Is mining'), + name: ((['clique', 'ibft2'].includes(NETWORK_ALGO)) ? 'Is validator' : 'Is mining'), width: 70, extraProps: {}, ascendingOrder: true,