mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-26 03:52:28 +00:00
[Alert Module] Fix HTML message (#3018)
Solve #2828 by adding nunjucks safe filter to the message Co-authored-by: Grena <grena@grenabox.fr> Co-authored-by: Veeck <github@veeck.de>
This commit is contained in:
parent
ee8695637b
commit
cd4ba428da
@ -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
|
||||
|
@ -14,5 +14,5 @@
|
||||
{% if title %}
|
||||
<br/>
|
||||
{% endif %}
|
||||
<span class="light bright small">{{ message }}</span>
|
||||
<span class="light bright small">{{ message | safe }}</span>
|
||||
{% endif %}
|
||||
|
@ -5,5 +5,5 @@
|
||||
{% if title %}
|
||||
<br/>
|
||||
{% endif %}
|
||||
<span class="light bright small">{{ message }}</span>
|
||||
<span class="light bright small">{{ message | safe }}</span>
|
||||
{% endif %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user