1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-04-05 17:49:41 +00:00

Merge pull request from wallabag/export-tag-null

Empty currentTag should be null
This commit is contained in:
Jérémy Benoist 2017-08-30 13:51:20 +02:00 committed by GitHub
commit 854616ac6d
2 changed files with 2 additions and 2 deletions
src/Wallabag/CoreBundle/Resources/views/themes
baggy/Entry
material/Entry

View file

@ -86,7 +86,7 @@
<!-- Export -->
<aside id="download-form">
{% set currentTag = '' %}
{% set currentTag = null %}
{% if tag is defined %}
{% set currentTag = tag %}
{% endif %}

View file

@ -57,7 +57,7 @@
<!-- Export -->
<div id="export" class="side-nav right-aligned">
{% set currentTag = '' %}
{% set currentTag = null %}
{% if tag is defined %}
{% set currentTag = tag.slug %}
{% endif %}