Skip to content

Commit

Permalink
fix: update response options for BooleanQuestion to improve clarity a…
Browse files Browse the repository at this point in the history
…nd show alternative options
  • Loading branch information
drikusroor committed Jan 7, 2025
1 parent bbf5433 commit 4e379f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/experiment/actions/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ class BooleanQuestion(Question):
key="is_student",
question="Are you a student?",
choices={
"no": "No", # or _("No") for translation
"yes": "Yes"
"no": "Nope", # Use _("No") for translation (default)
"yes": "Yep"
},
)
```
Expand Down

0 comments on commit 4e379f4

Please sign in to comment.