mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
fix: turn off autoComplete for some inputs
This commit is contained in:
@@ -159,7 +159,11 @@ export const AddRegistry = () => {
|
||||
<FormItem>
|
||||
<FormLabel>Username</FormLabel>
|
||||
<FormControl>
|
||||
<Input placeholder="Username" {...field} />
|
||||
<Input
|
||||
placeholder="Username"
|
||||
autoComplete="off"
|
||||
{...field}
|
||||
/>
|
||||
</FormControl>
|
||||
|
||||
<FormMessage />
|
||||
@@ -177,6 +181,7 @@ export const AddRegistry = () => {
|
||||
<FormControl>
|
||||
<Input
|
||||
placeholder="Password"
|
||||
autoComplete="off"
|
||||
{...field}
|
||||
type="password"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user