We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I could not find any documention or issues relating to this so hopefully someone can answer this. BTW this library is amazing :)
I want to be able to do something like this with uniforms:
export default function App() { return ( <div className="App"> <form autoComplete="off"> <input type="text"/> </form> </div> ); }
Such as:
import React from 'react'; import { AutoForm } from 'uniforms-semantic'; import { bridge as schema } from './GuestSchema'; export function GuestFormBasic() { return <AutoForm schema={schema} onSubmit={console.log} autoComplete="off" />; }
Is there a way to access the internal form tag?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi @petercinibulk! These should be passed properly, even if the types say otherwise.
Form
Sorry, something went wrong.
Awesome thanks! I am using TS and ESLint so I had to configure it to allow this
radekmie
No branches or pull requests
I could not find any documention or issues relating to this so hopefully someone can answer this. BTW this library is amazing :)
I want to be able to do something like this with uniforms:
Such as:
Is there a way to access the internal form tag?
Thanks!
The text was updated successfully, but these errors were encountered: