emvecchi commited on
Commit
96f3c27
1 Parent(s): 3bc06c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -107,7 +107,9 @@ fields: List[Field] = [
107
  Field(name="mod_assistance_other", type="text", title="*If Other, please specify:*"),
108
  ]),
109
 
110
- Field(name="other_comments", type="text", title="Additional comments: *(optional)*"),
 
 
111
  ]
112
  INPUT_FIELD_DEFAULT_VALUES = {'slider': 0,
113
  'text': None,
@@ -259,7 +261,7 @@ if st.session_state.current_index == -1:
259
 
260
  elif st.session_state.current_index < len(st.session_state.data):
261
  st.write(f"username is {st.session_state.user_id}")
262
-
263
  # Creating the form
264
  with st.form("feedback_form"):
265
  index = st.session_state.current_index
 
107
  Field(name="mod_assistance_other", type="text", title="*If Other, please specify:*"),
108
  ]),
109
 
110
+ Field(type="container", title="**Other**", children=[
111
+ Field(name="other_comments", type="text", title="Please provide any additional comments or information: *(optional)*"),
112
+ ]),
113
  ]
114
  INPUT_FIELD_DEFAULT_VALUES = {'slider': 0,
115
  'text': None,
 
261
 
262
  elif st.session_state.current_index < len(st.session_state.data):
263
  st.write(f"username is {st.session_state.user_id}")
264
+
265
  # Creating the form
266
  with st.form("feedback_form"):
267
  index = st.session_state.current_index