Skip to content

Commit

Permalink
Update api/survey/models.py
Browse files Browse the repository at this point in the history
Co-authored-by: code-review-doctor[bot] <72320148+code-review-doctor[bot]@users.noreply.github.com>
  • Loading branch information
Tllew and code-review-doctor[bot] authored Feb 12, 2024
1 parent 54b3b87 commit a708017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/survey/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SurveyResponse(TimestampableModel):
recommendation = models.CharField(
choices=RecommendationChoiceType.choices,
)
other_detail = models.TextField(blank=True, null=True)
other_detail = models.TextField(blank=True, default="")
experienced_issue = ArrayField(models.CharField(choices=ExperiencedIssueEnum.choices), blank=True, null=True)
helpful_guidance = models.CharField(choices=SatisfactionRatingEnum.choices, blank=True, default="")
user_account_process = models.CharField(choices=UserAccountEnum.choices, blank=True, default="")
Expand Down

0 comments on commit a708017

Please sign in to comment.