Skip to content

Commit

Permalink
fix: do not show None
Browse files Browse the repository at this point in the history
  • Loading branch information
xeroc committed Feb 19, 2024
1 parent dc5de0e commit aa04f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/templates/team-admin.pug
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ td.has-text-light
.field-label.is-normal Description
.field-body
.control
textarea.textarea(type="string" placeholder="Description" name="description") {{team.description}}
textarea.textarea(type="string" placeholder="Description" name="description") {{team.description or ""}}
small.helper Markdown supported
span#updated_team_description
button.button.is-block.is-link.is-fullwidth.is-normal.m-0 Subscribe
Expand Down

0 comments on commit aa04f87

Please sign in to comment.