mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 20:22:53 +00:00
Merge pull request #2503 from sdetweil/fixnews
This commit is contained in:
commit
108fe2082d
@ -64,6 +64,7 @@ _This release is scheduled to be released on 2021-04-01._
|
||||
- Fix calendar daylight savings offset calculation if recurring start date before 2007
|
||||
- Fix calendar time/date adjustment when time with GMT offset is different day (#2488)
|
||||
- Fix calendar daylight savings offset calculation if recurring FULL DAY start date before 2007 (#2483)
|
||||
- Fix newsreaders template, for wrong test for nowrap in 2 places (should be if not)
|
||||
|
||||
## [2.14.0] - 2021-01-01
|
||||
|
||||
|
@ -10,10 +10,10 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="newsfeed-title bright medium light{{ ' no-wrap' if config.wrapTitle }}">
|
||||
<div class="newsfeed-title bright medium light{{ ' no-wrap' if not config.wrapTitle }}">
|
||||
{{ title }}
|
||||
</div>
|
||||
<div class="newsfeed-desc small light{{ ' no-wrap' if config.wrapDescription }}">
|
||||
<div class="newsfeed-desc small light{{ ' no-wrap' if not config.wrapDescription }}">
|
||||
{% if config.truncDescription %}
|
||||
{{ description | truncate(config.lengthDescription) }}
|
||||
{% else %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user