fix: make telnet icon different from terminal

This commit is contained in:
LukeGus
2026-05-27 00:29:28 -05:00
parent 2ea9a481a3
commit a418a4df0e
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -10,6 +10,7 @@ import {
GripVertical, GripVertical,
KeyRound, KeyRound,
LayoutDashboard, LayoutDashboard,
MessagesSquare,
Network, Network,
Plus, Plus,
Server, Server,
@@ -540,7 +541,7 @@ function RecentActivityCard({
docker: <Server className="size-2.5" />, docker: <Server className="size-2.5" />,
rdp: <Server className="size-2.5" />, rdp: <Server className="size-2.5" />,
vnc: <Server className="size-2.5" />, vnc: <Server className="size-2.5" />,
telnet: <Terminal className="size-2.5" />, telnet: <MessagesSquare className="size-2.5" />,
}; };
const typeToTab: Record<RecentActivityItem["type"], TabType> = { const typeToTab: Record<RecentActivityItem["type"], TabType> = {
terminal: "terminal", terminal: "terminal",
+1 -1
View File
@@ -47,7 +47,7 @@ const ACTIVITY_ICONS: Record<string, React.ReactNode> = {
server_stats: <Activity className="size-3.5" />, server_stats: <Activity className="size-3.5" />,
tunnel: <Network className="size-3.5" />, tunnel: <Network className="size-3.5" />,
docker: <Box className="size-3.5" />, docker: <Box className="size-3.5" />,
telnet: <Terminal className="size-3.5" />, telnet: <MessagesSquare className="size-3.5" />,
vnc: <Monitor className="size-3.5" />, vnc: <Monitor className="size-3.5" />,
rdp: <Monitor className="size-3.5" />, rdp: <Monitor className="size-3.5" />,
}; };
+2 -1
View File
@@ -13,6 +13,7 @@ import {
Link, Link,
Loader2, Loader2,
MemoryStick, MemoryStick,
MessagesSquare,
Monitor, Monitor,
MoreHorizontal, MoreHorizontal,
Network, Network,
@@ -371,7 +372,7 @@ export function HostItem({
}} }}
className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors" className="flex items-center justify-center size-7 rounded text-muted-foreground/50 hover:text-foreground hover:bg-muted-foreground/10 transition-colors"
> >
<Terminal className="size-3.5" /> <MessagesSquare className="size-3.5" />
</button> </button>
)} )}
</div> </div>