Skip to content

Commit

Permalink
changed default rgb to grey
Browse files Browse the repository at this point in the history
  • Loading branch information
Nik Sauer committed Jan 30, 2025
1 parent 4fa0aa7 commit 7a5ed74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/campaign/templatetags/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ def at(l, id):
@register.filter
def to_rgb(tup):
if tup is None:
return None
return '80, 80, 80'
return ','.join([str(x) for x in tup])

0 comments on commit 7a5ed74

Please sign in to comment.