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",
|
||||
"version": "0.1.14",
|
||||
"version": "0.1.15",
|
||||
"author": "Uncle f4tso <f4ts0@ghostchain.io>",
|
||||
"license": "GPL-3.0",
|
||||
"description": "Ghost Telemetry frontend",
|
||||
|
||||
@ -50,8 +50,8 @@ export class Connection {
|
||||
if (window.location.protocol === 'https:') {
|
||||
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> {
|
||||
|
||||
@ -25,13 +25,18 @@ export class ValidatorColumn extends React.Component<ColumnProps> {
|
||||
this.data = validator;
|
||||
|
||||
if (!validator) {
|
||||
return <td className="Column">🤖</td>;
|
||||
return (
|
||||
<td className="Column">
|
||||
🤖
|
||||
<Tooltip text="Full Node" />
|
||||
</td>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<td className="Column" onClick={this.onClick}>
|
||||
👻
|
||||
<Tooltip text={validator} copy={this.onCopy} />
|
||||
<Tooltip text="Validator Node" />
|
||||
</td>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user