From b56362e04df6d02d3b4ce1bea7897b88519b5340 Mon Sep 17 00:00:00 2001 From: Uncle Fatso Date: Mon, 3 Nov 2025 14:02:36 +0300 Subject: [PATCH] rename icons hover inside table Signed-off-by: Uncle Fatso --- package.json | 2 +- src/Connection.ts | 4 ++-- src/components/List/Column/ValidatorColumn.tsx | 9 +++++++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index d8ec7c1..1df1de1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghost-telemetry-frontend", - "version": "0.1.14", + "version": "0.1.15", "author": "Uncle f4tso ", "license": "GPL-3.0", "description": "Ghost Telemetry frontend", diff --git a/src/Connection.ts b/src/Connection.ts index 32d8e68..91fc439 100644 --- a/src/Connection.ts +++ b/src/Connection.ts @@ -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 { diff --git a/src/components/List/Column/ValidatorColumn.tsx b/src/components/List/Column/ValidatorColumn.tsx index 252b91b..af1ea6b 100644 --- a/src/components/List/Column/ValidatorColumn.tsx +++ b/src/components/List/Column/ValidatorColumn.tsx @@ -25,13 +25,18 @@ export class ValidatorColumn extends React.Component { this.data = validator; if (!validator) { - return 🤖; + return ( + + 🤖 + + + ); } return ( 👻 - + ); }