Update AppImage

This commit is contained in:
MacRimi
2025-12-10 18:09:21 +01:00
parent cb5581c49f
commit 80b9d16494
2 changed files with 1 additions and 3 deletions

View File

@@ -8,7 +8,6 @@ import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label" import { Label } from "@/components/ui/label"
import { Loader2, Activity, GripHorizontal } from "lucide-react" import { Loader2, Activity, GripHorizontal } from "lucide-react"
import { API_PORT } from "../lib/api-config" import { API_PORT } from "../lib/api-config"
import { fetchApi } from "@/lib/api-config"
import { useIsMobile } from "@/hooks/use-mobile" import { useIsMobile } from "@/hooks/use-mobile"
interface WebInteraction { interface WebInteraction {

View File

@@ -427,7 +427,6 @@ export const TerminalPanel: React.FC<TerminalPanelProps> = ({ websocketUrl, onCl
setTerminals((prev) => setTerminals((prev) =>
prev.map((t) => (t.id === terminal.id ? { ...t, isConnected: true, term, ws, fitAddon } : t)), prev.map((t) => (t.id === terminal.id ? { ...t, isConnected: true, term, ws, fitAddon } : t)),
) )
term.writeln("\x1b[32mConnected to ProxMenux terminal.\x1b[0m")
syncSizeWithBackend() syncSizeWithBackend()
} }
@@ -821,7 +820,7 @@ export const TerminalPanel: React.FC<TerminalPanelProps> = ({ websocketUrl, onCl
}} }}
variant="outline" variant="outline"
size="sm" size="sm"
className="h-8 px-2.5 text-xs" className="h-8 px-3 text-xs"
> >
</Button> </Button>