Skip to content

Commit 4ecc69d

Browse files
authored
Fix typo in forms.md (#1270)
1 parent 44e16de commit 4ecc69d

File tree

1 file changed

+1
-1
lines changed
  • content/develop/concepts/architecture

1 file changed

+1
-1
lines changed

content/develop/concepts/architecture/forms.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ st.map(df, size='size', color='color')
6767

6868
## User interaction
6969

70-
If a widget is not in a form, that widget will trigger a script rerun whenever a user changes its value. For widgets with keyed input (`st.number_input`, `st.text_input`, `st.text_area`), a new value triggers a rerun when the user clicks or tabs out of the widget. A user can also submit a change by pressing `Enter` while thier cursor is active in the widget.
70+
If a widget is not in a form, that widget will trigger a script rerun whenever a user changes its value. For widgets with keyed input (`st.number_input`, `st.text_input`, `st.text_area`), a new value triggers a rerun when the user clicks or tabs out of the widget. A user can also submit a change by pressing `Enter` while their cursor is active in the widget.
7171

7272
On the other hand if a widget is inside of a form, the script will not rerun when a user clicks or tabs out of that widget. For widgets inside a form, the script will rerun when the form is submitted and all widgets within the form will send their updated values to the Python backend.
7373

0 commit comments

Comments
 (0)