From 679397f60ef9ca8542786d2b396fecc44762103a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Tue, 12 Nov 2013 12:59:59 -0800 Subject: [PATCH] fix broken link on controlled input tip --- tips/08-controlled-input-null-value.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tips/08-controlled-input-null-value.md b/tips/08-controlled-input-null-value.md index a3809654..37c8efb3 100644 --- a/tips/08-controlled-input-null-value.md +++ b/tips/08-controlled-input-null-value.md @@ -7,7 +7,7 @@ prev: children-props-type.html next: componentWillReceiveProps-not-triggered-after-mounting.html --- -Specifying the `value` prop on a [controlled component](/react/docs/tips/forms.html) prevents the user from changing the input unless you desire so. +Specifying the `value` prop on a [controlled component](/react/docs/forms.html) prevents the user from changing the input unless you desire so. You might have run into a problem where `value` is specified, but the input can still be changed without consent. In this case, you might have accidentally set `value` to `undefined` or `null`.