mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +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 wrong day labels in envcanada forecast (#2987)
|
||||||
- Fix for missing default class name prefix for customEvents in calendar
|
- Fix for missing default class name prefix for customEvents in calendar
|
||||||
- Fix weathergov provider hourly forecast (#3008)
|
- Fix weathergov provider hourly forecast (#3008)
|
||||||
|
- Fix message display with HTML code into alert module (#2828)
|
||||||
- Fix typo into french translation
|
- Fix typo into french translation
|
||||||
|
|
||||||
## [2.22.0] - 2023-01-01
|
## [2.22.0] - 2023-01-01
|
||||||
|
@ -14,5 +14,5 @@
|
|||||||
{% if title %}
|
{% if title %}
|
||||||
<br/>
|
<br/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span class="light bright small">{{ message }}</span>
|
<span class="light bright small">{{ message | safe }}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -5,5 +5,5 @@
|
|||||||
{% if title %}
|
{% if title %}
|
||||||
<br/>
|
<br/>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span class="light bright small">{{ message }}</span>
|
<span class="light bright small">{{ message | safe }}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user