mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 00:30:59 +00:00
Fix wrong summary class name construction
This commit is contained in:
parent
024b01a144
commit
1f2597ff4e
1 changed files with 1 additions and 1 deletions
|
@ -460,7 +460,7 @@ class Post(StatorModel):
|
|||
"""
|
||||
if not self.summary:
|
||||
return ""
|
||||
return "summary-{self.id}"
|
||||
return f"summary-{self.id}"
|
||||
|
||||
@property
|
||||
def stats_with_defaults(self):
|
||||
|
|
Loading…
Reference in a new issue