Skip to content

Commit

Permalink
chore: added null value in sticky title
Browse files Browse the repository at this point in the history
  • Loading branch information
NarayanBavisetti committed Jan 2, 2025
1 parent 5f64396 commit 0402c77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,9 @@ class Migration(migrations.Migration):
name="name",
field=models.TextField(blank=True),
),
migrations.AlterField(
model_name="sticky",
name="name",
field=models.TextField(blank=True, null=True),
),
]
2 changes: 1 addition & 1 deletion apiserver/plane/db/models/sticky.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class Sticky(BaseModel):
name = models.TextField()
name = models.TextField(null=True, blank=True)

description = models.JSONField(blank=True, default=dict)
description_html = models.TextField(blank=True, default="<p></p>")
Expand Down

0 comments on commit 0402c77

Please sign in to comment.