fix(ui): better autocomplete work

This commit is contained in:
Vyacheslav Shcherbinin 2025-03-09 14:19:42 +07:00
parent dc5d79085c
commit b98d57e99a
2 changed files with 3 additions and 3 deletions

View File

@ -494,7 +494,7 @@ export const AddDatabase = ({ projectId, projectName }: Props) => {
<Input <Input
type="password" type="password"
placeholder="******************" placeholder="******************"
autoComplete="off" autoComplete="one-time-code"
{...field} {...field}
/> />
</FormControl> </FormControl>

View File

@ -207,7 +207,7 @@ export const HandleRegistry = ({ registryId }: Props) => {
<FormControl> <FormControl>
<Input <Input
placeholder="Username" placeholder="Username"
autoComplete="off" autoComplete="username"
{...field} {...field}
/> />
</FormControl> </FormControl>
@ -227,7 +227,7 @@ export const HandleRegistry = ({ registryId }: Props) => {
<FormControl> <FormControl>
<Input <Input
placeholder="Password" placeholder="Password"
autoComplete="off" autoComplete="one-time-code"
{...field} {...field}
type="password" type="password"
/> />