Skip to content

Commit

Permalink
Fix MASWE note display issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cpholguera committed Jul 12, 2024
1 parent e9cbb8e commit 3d7f76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/hooks/maswe-beta-banner.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def get_info_banner(meta):
description = draft_info.get('description', None)

if draft_info.get('note', None):
description += "\n\n" + "> Note: " + draft_info.get('note', None)
description += "\n\n" + "> Note: " + draft_info.get('note', None) + "\n"

topics = draft_info.get('topics', None)
topics_section = ""
Expand Down

0 comments on commit 3d7f76e

Please sign in to comment.