Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

### Documentation

- Fixed two typos in the `Form` documentation ([#2879](https://github.com/Shopify/polaris-react/pull/2879))

### Development workflow

### Dependency upgrades
Expand Down
4 changes: 2 additions & 2 deletions src/components/Form/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export interface FormProps {
acceptCharset?: string;
/** Where to send form-data on submittal */
action?: string;
/** Grants the broswer the ability to autocomplete input elements */
/** Grants the browser the ability to autocomplete input elements */
autoComplete?: boolean;
/** The content to display inside the form. */
children?: React.ReactNode;
/** Media type when submiting content to server */
/** Media type when submitting content to server */
encType?: Enctype;
/** Toggles if form submits on Enter keypress. Defaults to true. */
implicitSubmit?: boolean;
Expand Down