Hide password

This commit is contained in:
LukeGus
2025-08-27 15:23:42 -05:00
parent d88c890ba7
commit 191dc8ba24

View File

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