Credential manager + bug fixes #191

Merged
LukeGus merged 18 commits from zac-dev into main 2025-09-08 02:23:48 +00:00
Showing only changes of commit 60fb70ad5f - Show all commits
@@ -256,13 +256,22 @@ export function HostManagerHostEditor({editingHost, onFormSubmit}: SSHManagerHos
// Focus the IP address field when the component mounts or when editingHost changes // Focus the IP address field when the component mounts or when editingHost changes
useEffect(() => { useEffect(() => {
// Use setTimeout to ensure the input is rendered before focusing
const focusTimer = setTimeout(() => { const focusTimer = setTimeout(() => {
if (ipInputRef.current) { if (ipInputRef.current) {
ipInputRef.current.focus(); ipInputRef.current.focus();
} }
}, 100); }, 300);
return () => clearTimeout(focusTimer);
}, []); // Focus on mount
// Also focus when editingHost changes (for tab switching)
useEffect(() => {
const focusTimer = setTimeout(() => {
if (ipInputRef.current) {
ipInputRef.current.focus();
}
}, 300);
return () => clearTimeout(focusTimer); return () => clearTimeout(focusTimer);
}, [editingHost]); }, [editingHost]);
@@ -443,9 +452,12 @@ export function HostManagerHostEditor({editingHost, onFormSubmit}: SSHManagerHos
<FormLabel>{t('hosts.ipAddress')}</FormLabel> <FormLabel>{t('hosts.ipAddress')}</FormLabel>
<FormControl> <FormControl>
<Input <Input
ref={ipInputRef}
placeholder={t('placeholders.ipAddress')} placeholder={t('placeholders.ipAddress')}
{...field} {...field}
ref={(e) => {
field.ref(e);
ipInputRef.current = e;
}}
/> />
</FormControl> </FormControl>
</FormItem> </FormItem>