From a29861d187b59d0613320ffedea544a1f52fa416 Mon Sep 17 00:00:00 2001 From: smeng9 <38666763+smeng9@users.noreply.github.com> Date: Sat, 7 May 2022 15:43:03 -0500 Subject: [PATCH] Update form id documentation --- docs/Form.md | 4 ++-- docs/SimpleForm.md | 4 ++-- docs/TabbedForm.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/Form.md b/docs/Form.md index 51e35504e06..14155d48461 100644 --- a/docs/Form.md +++ b/docs/Form.md @@ -79,7 +79,7 @@ export const PostCreate = () => ( ## `id` -Normally, a submit button only works when placed inside a `
` tag. However, you can place a submit button outside of the form if the submit button `form_id` matches the form `id`. +Normally, a submit button only works when placed inside a `` tag. However, you can place a submit button outside of the form if the submit button `form` matches the form `id`. Set this form `id` via the `id` prop. @@ -93,7 +93,7 @@ export const PostCreate = () => ( - + ); ``` diff --git a/docs/SimpleForm.md b/docs/SimpleForm.md index 4b05f7c7421..322fc424151 100644 --- a/docs/SimpleForm.md +++ b/docs/SimpleForm.md @@ -85,7 +85,7 @@ export const PostCreate = () => ( ## `id` -Normally, a submit button only works when placed inside a `
` tag. However, you can place a submit button outside of the form if the submit button `form_id` matches the form `id`. +Normally, a submit button only works when placed inside a `` tag. However, you can place a submit button outside of the form if the submit button `form` matches the form `id`. Set this form `id` via the `id` prop. @@ -97,7 +97,7 @@ export const PostCreate = () => ( - + ); ``` diff --git a/docs/TabbedForm.md b/docs/TabbedForm.md index 2a9dac7dc0f..b9a9c29d773 100644 --- a/docs/TabbedForm.md +++ b/docs/TabbedForm.md @@ -122,7 +122,7 @@ export const PostCreate = () => ( ## `id` -Normally, a submit button only works when placed inside a `` tag. However, you can place a submit button outside of the form if the submit button `form_id` matches the form `id`. +Normally, a submit button only works when placed inside a `` tag. However, you can place a submit button outside of the form if the submit button `form` matches the form `id`. Set this form `id` via the `id` prop. @@ -132,7 +132,7 @@ export const PostCreate = () => ( ... - + ); ```