Dev 1.3.1 #114

Merged
LukeGus merged 38 commits from dev-1.3.1 into main 2025-08-28 06:00:48 +00:00
Showing only changes of commit 191dc8ba24 - Show all commits

View File

@@ -582,11 +582,11 @@ export function HostManagerHostEditor({editingHost, onFormSubmit}: SSHManagerHos
<FormField
control={form.control}
name="password"
render={({field}) => (
render={({ field }) => (
<FormItem>
<FormLabel>Password</FormLabel>
<FormControl>
<Input placeholder="password" {...field} />
<Input type="password" placeholder="password" {...field} />
</FormControl>
</FormItem>
)}