emvecchi commited on
Commit
df7d87a
1 Parent(s): 92f4b24

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -95,15 +95,17 @@ fields: List[Field] = [
95
 
96
  Field(type="container", title="**Contributing properties**", children=[
97
  Field(name="relevant_properties", type="multiselect",
98
- title="Which property(s) is most impactful in your assessment? *(Multiple selection possible)*", other_params={'choices': property_choices}),
 
99
  Field(name="relevant_properties_other", type="text", title="*If Other, please specify:*"),
100
  ]),
101
 
102
  Field(type="container", title="**Moderator Assistance**", children=[
103
  Field(name="helpful", type="radio",
104
- title="If this comment/discussion was flagged to you, would it be helpful in your task of moderation?"),
105
  Field(name="mod_assistance", type="multiselect",
106
- title="If yes, please motivate the benefit it would contribute to the task. *(Multiple selection possible)*", other_params={'choices': assistance_choices}),
 
107
  Field(name="mod_assistance_other", type="text", title="*If Other, please specify:*"),
108
  ]),
109
 
 
95
 
96
  Field(type="container", title="**Contributing properties**", children=[
97
  Field(name="relevant_properties", type="multiselect",
98
+ title="Which property(s) is most impactful in your assessment? *(Multiple selection possible)*",
99
+ other_params={'choices': property_choices}),
100
  Field(name="relevant_properties_other", type="text", title="*If Other, please specify:*"),
101
  ]),
102
 
103
  Field(type="container", title="**Moderator Assistance**", children=[
104
  Field(name="helpful", type="radio",
105
+ title="If this comment/discussion was flagged to you, would it be helpful in your task of moderation?"),
106
  Field(name="mod_assistance", type="multiselect",
107
+ title="If yes, please motivate the benefit it would contribute to the task. *(Multiple selection possible)*",
108
+ other_params={'choices': assistance_choices}),
109
  Field(name="mod_assistance_other", type="text", title="*If Other, please specify:*"),
110
  ]),
111