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 ( 👻 - + ); }