Skip to content

Commit

Permalink
fix: Missing space in auto column short description (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun authored Jan 11, 2024
1 parent 56935e0 commit a974fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djangocms_frontend/contrib/grid/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@ def get_short_description(self):
if self.xs_col:
text += f" (col-{self.xs_col}) "
else:
text += "(auto) "
text += " (auto) "
return text.strip()

0 comments on commit a974fe3

Please sign in to comment.