mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 14:54:22 +00:00
🔧 Fix nullable fields for projects
This commit is contained in:
parent
0695ad6b26
commit
310d7d0393
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ class ResearchProject(SophonGroupModel):
|
||||||
description = models.TextField(
|
description = models.TextField(
|
||||||
"Description",
|
"Description",
|
||||||
help_text="A brief description of the project, to be displayed in the overview.",
|
help_text="A brief description of the project, to be displayed in the overview.",
|
||||||
blank=True,
|
blank=True, null=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
visibility = models.CharField(
|
visibility = models.CharField(
|
||||||
|
|
Loading…
Reference in a new issue