From ea69a4ed1b06ab1851e81175613ec8a09e937d68 Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 11 Jan 2024 22:25:09 +0000 Subject: [PATCH] . --- anatomy/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anatomy/models.py b/anatomy/models.py index b6b9f2d4..4264f55a 100644 --- a/anatomy/models.py +++ b/anatomy/models.py @@ -94,7 +94,7 @@ class AnatomyQuestion(QuestionBase): answer_help = models.TextField(default="", blank=True, null=True, help_text="Helpful information for marking") - answer_suggest_incorrect = ArrayField(models.CharField(max_length=255, null=True), default=list) + answer_suggest_incorrect = ArrayField(models.CharField(max_length=255, null=True), default=list, blank=True) examination = models.ForeignKey( Examination, on_delete=models.SET_NULL, null=True, blank=True