We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 827bd71 commit 68af3eeCopy full SHA for 68af3ee
backend/main.py
@@ -129,14 +129,14 @@ def form_generator(state: State):
129
class TestForm0(FormPage):
130
model_config = ConfigDict(title="Form Title Page 0")
131
132
- text0: Annotated[int, Ge(18), Le(99)] = 17
+ number0: Annotated[int, Ge(18), Le(99)] = 17
133
134
form_data_0 = yield TestForm0
135
136
class TestForm1(FormPage):
137
model_config = ConfigDict(title="Form Title Page 1")
138
139
- text1: Annotated[int, Ge(18), Le(99)] = 17
+ number1: Annotated[int, Ge(18), Le(99)] = 17
140
141
form_data_1 = yield TestForm1
142
0 commit comments