Skip to content

Commit afa2d77

Browse files
committed
Increased the length of project short description
1 parent 2d9e899 commit afa2d77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

projects/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Project(models.Model):
6666
objects = ProjectManager()
6767

6868
def get_short_description(self) -> Optional[str]:
69-
return self.description[:30] if self.description else None
69+
return self.description[:90] if self.description else None
7070

7171
def save(
7272
self, force_insert=False, force_update=False, using=None, update_fields=None

0 commit comments

Comments
 (0)