mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-03-28 17:43:05 +01:00
Add node last heard reason to hover
This commit is contained in:
@@ -13,7 +13,7 @@ Backend server + browser interface for MeshCore mesh radio networks. Connect you
|
|||||||
|
|
||||||
**Warning:** This app has no auth, and is for trusted environments only. _Do not put this on an untrusted network, or open it to the public._ The bots can execute arbitrary Python code which means anyone on your network can, too. If you need access control, consider using a reverse proxy like Nginx, or extending FastAPI; access control and user management are outside the scope of this app.
|
**Warning:** This app has no auth, and is for trusted environments only. _Do not put this on an untrusted network, or open it to the public._ The bots can execute arbitrary Python code which means anyone on your network can, too. If you need access control, consider using a reverse proxy like Nginx, or extending FastAPI; access control and user management are outside the scope of this app.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Disclaimer
|
## Disclaimer
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB |
@@ -1928,7 +1928,7 @@ export function PacketVisualizer3D({
|
|||||||
{node.ambiguousNames.join(', ')}
|
{node.ambiguousNames.join(', ')}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{pinnedNodeId && node.type !== 'self' && (
|
{node.type !== 'self' && (
|
||||||
<div className="text-muted-foreground border-t border-border pt-1 mt-1">
|
<div className="text-muted-foreground border-t border-border pt-1 mt-1">
|
||||||
<div>Last active: {formatRelativeTime(node.lastActivity)}</div>
|
<div>Last active: {formatRelativeTime(node.lastActivity)}</div>
|
||||||
{node.lastActivityReason && <div>Reason: {node.lastActivityReason}</div>}
|
{node.lastActivityReason && <div>Reason: {node.lastActivityReason}</div>}
|
||||||
|
|||||||
Reference in New Issue
Block a user