feat: add status to node page (#1829)

This commit is contained in:
Dexter Edwards 2022-10-21 16:44:52 +01:00 committed by GitHub
parent c3175d3e65
commit 23b517b4a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -693,5 +693,6 @@
"ProposalNotFoundDetails": "The proposal you are looking for is not here, it may have been enacted before the last chain restore. You could check the Vega forums/discord instead for information about it.",
"FreeformProposal": "Freeform proposal",
"unknownReason": "unknown reason",
"votingEnded": "Voting has ended."
"votingEnded": "Voting has ended.",
"STATUS": "STATUS"
}

View File

@ -63,6 +63,10 @@ export const ValidatorTable = ({
<a href={node.infoUrl}>{node.infoUrl}</a>
</span>
</KeyValueTableRow>
<KeyValueTableRow>
<span>{t('STATUS')}</span>
<span>{node.status}</span>
</KeyValueTableRow>
<KeyValueTableRow>
<span>{t('IP ADDRESS')}</span>
<span>{node.location}</span>