Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable form autocomplete in semantic-ui-react?

How can I disable autocompleting form with credentials in semantic-ui-react? Tried this but it does not work

import { Form } from 'semantic-ui-react';
<Form autoComplete="off">
....
</Form>
like image 435
igo Avatar asked Mar 03 '18 08:03

igo


3 Answers

<Form autoComplete="off">
</Form>

WOrks for me... Shouldn't be an issue

like image 118
Imran Avatar answered Oct 19 '22 19:10

Imran


I don't think you can put autoComplete on Form. Instead try it on either Form.Group or on each Input.

like image 2
morinx Avatar answered Oct 19 '22 19:10

morinx


It should work. It works on mine when I tested it on my application. So it's not a problem with semantic-ui-react.

like image 1
hwkd Avatar answered Oct 19 '22 17:10

hwkd