WIP: Guacd, Docker-Compose, RDP #475

Draft
starhound wants to merge 33 commits from starhound/starhound/guacd-docker-compose into dev-1.10.1
Showing only changes of commit 7975a077ea - Show all commits

View File

@@ -42,6 +42,15 @@ export function HostManager({
}
}, [initialTab]);
// Update editingHost when hostConfig changes
useEffect(() => {
if (hostConfig) {
setEditingHost(hostConfig);
setActiveTab("add_host");
lastProcessedHostIdRef.current = hostConfig.id;
}
}, [hostConfig?.id]);
const handleEditHost = (host: SSHHost) => {
setEditingHost(host);
setActiveTab("add_host");