Merge pull request #3294 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

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 %}