validator's color fix

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2025-01-13 16:23:46 +03:00
parent e63dad2106
commit f3bd53600e
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "ghost-telemetry-frontend", "name": "ghost-telemetry-frontend",
"version": "0.1.5", "version": "0.1.6",
"author": "Uncle f4tso <f4ts0@ghostchain.io>", "author": "Uncle f4tso <f4ts0@ghostchain.io>",
"license": "GPL-3.0", "license": "GPL-3.0",
"description": "Ghost Telemetry frontend", "description": "Ghost Telemetry frontend",

View File

@ -66,7 +66,7 @@ export class Location extends React.Component<LocationProps, LocationState> {
className += ' Location-dimmed'; className += ' Location-dimmed';
} }
if (node.validator) { if (node.validator?.startsWith("sf")) {
className = `Validator-${className}-validator`; className = `Validator-${className}-validator`;
} }