htmlreactjsgoogle-chrome

React doesn't render autocomplete off


How do I make react render it?

<input
    id={field.name}
    className="form-control"
    type="text"
    placeholder={field.name}
    autocomplete="off"
    {...field}/>

Solution

  • Capital "C" autoComplete. This is mentioned in the React documentation:

    https://reactjs.org/docs/dom-elements.html#all-supported-html-attributes