Sacha Weatherstone
4 years ago
No known key found for this signature in database
GPG Key ID: 7AB2D7E206124B31
1 changed files with
5 additions and
3 deletions
-
src/pages/Peers.tsx
|
|
|
@ -9,7 +9,7 @@ import { useDevice } from "@core/providers/useDevice.js"; |
|
|
|
import { Hashicon } from "@emeraldpay/hashicon-react"; |
|
|
|
import { |
|
|
|
ArrowPathRoundedSquareIcon, |
|
|
|
EllipsisHorizontalIcon, |
|
|
|
EllipsisHorizontalIcon |
|
|
|
} from "@heroicons/react/24/outline"; |
|
|
|
import { Protobuf } from "@meshtastic/meshtasticjs"; |
|
|
|
|
|
|
|
@ -71,7 +71,9 @@ export const PeersPage = (): JSX.Element => { |
|
|
|
> |
|
|
|
<td className="flex gap-2 whitespace-nowrap py-2 pr-3 pl-6 text-sm font-medium text-gray-900"> |
|
|
|
<Hashicon size={24} value={node.data.num.toString()} /> |
|
|
|
<span className="my-auto">{node.data.user?.longName}</span> |
|
|
|
<span className="my-auto"> |
|
|
|
{node.data.user?.longName ?? "Unknown"} |
|
|
|
</span> |
|
|
|
</td> |
|
|
|
<td className="whitespace-nowrap py-2 text-sm text-gray-500"> |
|
|
|
<span className="rounded-md bg-slate-200 p-1"> |
|
|
|
@ -106,7 +108,7 @@ export const PeersPage = (): JSX.Element => { |
|
|
|
{ |
|
|
|
loading: "Requesting Metadata...", |
|
|
|
success: "Recieved Metadata", |
|
|
|
error: "No response received", |
|
|
|
error: "No response received" |
|
|
|
} |
|
|
|
); |
|
|
|
} |
|
|
|
|