Merge pull request #2503 from sdetweil/fixnews

This commit is contained in:
Michael Teeuw 2021-03-25 08:31:50 +01:00 committed by GitHub
commit 108fe2082d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -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 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 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 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 ## [2.14.0] - 2021-01-01

View File

@ -10,10 +10,10 @@
{% endif %} {% endif %}
</div> </div>
{% endif %} {% 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 }} {{ title }}
</div> </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 %} {% if config.truncDescription %}
{{ description | truncate(config.lengthDescription) }} {{ description | truncate(config.lengthDescription) }}
{% else %} {% else %}