rename icons hover inside table
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
parent
ab3ddf774d
commit
b56362e04d
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ghost-telemetry-frontend",
|
"name": "ghost-telemetry-frontend",
|
||||||
"version": "0.1.14",
|
"version": "0.1.15",
|
||||||
"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",
|
||||||
|
|||||||
@ -51,7 +51,7 @@ export class Connection {
|
|||||||
return `wss://${window.location.hostname}/feed/`;
|
return `wss://${window.location.hostname}/feed/`;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 'ws://127.0.0.1:8000/feed';
|
return 'ws://127.0.0.1:8000/feed/';
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async socket(): Promise<WebSocket> {
|
private static async socket(): Promise<WebSocket> {
|
||||||
|
|||||||
@ -25,13 +25,18 @@ export class ValidatorColumn extends React.Component<ColumnProps> {
|
|||||||
this.data = validator;
|
this.data = validator;
|
||||||
|
|
||||||
if (!validator) {
|
if (!validator) {
|
||||||
return <td className="Column">🤖</td>;
|
return (
|
||||||
|
<td className="Column">
|
||||||
|
🤖
|
||||||
|
<Tooltip text="Full Node" />
|
||||||
|
</td>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<td className="Column" onClick={this.onClick}>
|
<td className="Column" onClick={this.onClick}>
|
||||||
👻
|
👻
|
||||||
<Tooltip text={validator} copy={this.onCopy} />
|
<Tooltip text="Validator Node" />
|
||||||
</td>
|
</td>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user