forked from github/plane
fix: make title as optional for issue links (#1641)
This commit is contained in:
parent
c87d70195d
commit
679c97bbe3
@ -209,7 +209,7 @@ class IssueAssignee(ProjectBaseModel):
|
||||
|
||||
|
||||
class IssueLink(ProjectBaseModel):
|
||||
title = models.CharField(max_length=255, null=True)
|
||||
title = models.CharField(max_length=255, null=True, blank=True)
|
||||
url = models.URLField()
|
||||
issue = models.ForeignKey(
|
||||
"db.Issue", on_delete=models.CASCADE, related_name="issue_link"
|
||||
|
Loading…
Reference in New Issue
Block a user