rename icons hover inside table

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2025-11-03 14:02:36 +03:00
parent ab3ddf774d
commit b56362e04d
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
3 changed files with 10 additions and 5 deletions

View File

@ -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",

View File

@ -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> {

View File

@ -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">&#129302;</td>; return (
<td className="Column">
&#129302;
<Tooltip text="Full Node" />
</td>
);
} }
return ( return (
<td className="Column" onClick={this.onClick}> <td className="Column" onClick={this.onClick}>
&#128123; &#128123;
<Tooltip text={validator} copy={this.onCopy} /> <Tooltip text="Validator Node" />
</td> </td>
); );
} }