Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ _This release is scheduled to be released on 2023-04-01._
- Fix wrong day labels in envcanada forecast (#2987)
- Fix for missing default class name prefix for customEvents in calendar
- Fix weathergov provider hourly forecast (#3008)
- Fix message display with HTML code into alert module (#2828)
- Fix typo into french translation

## [2.22.0] - 2023-01-01
Expand Down
2 changes: 1 addition & 1 deletion modules/default/alert/templates/alert.njk
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
{% if title %}
<br/>
{% endif %}
<span class="light bright small">{{ message }}</span>
<span class="light bright small">{{ message | safe }}</span>
{% endif %}
2 changes: 1 addition & 1 deletion modules/default/alert/templates/notification.njk
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
{% if title %}
<br/>
{% endif %}
<span class="light bright small">{{ message }}</span>
<span class="light bright small">{{ message | safe }}</span>
{% endif %}