abhishekbhakat commented on issue #24700:
URL: https://github.com/apache/airflow/issues/24700#issuecomment-1168589972

   Can we try adding a parameter to 
[Login.tsx](https://github.com/apache/airflow/blob/main/airflow/ui/src/views/Login.tsx)
 as:
   
   ```
             <FormControl mt={4}>
               <FormLabel htmlFor="password">Password</FormLabel>
               <InputGroup>
                 <InputLeftElement>
                   <Icon as={FiLock} color="gray.300" />
                 </InputLeftElement>
                 <Input
                   type="password"
                   name="password"
                   placeholder="Password"
                   data-testid="password"
                   value={password}
                   onChange={(e) => setPassword(e.target.value)}
                   isRequired
                 />
               </InputGroup>
             </FormControl>
   ```
   
   Guess the parameter should be `autoComplete = 'off'`?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to