mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 09:31:04 +00:00
Merge pull request #3294 from wallabag/export-tag-null
Empty currentTag should be null
This commit is contained in:
commit
854616ac6d
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@
|
|||
|
||||
<!-- Export -->
|
||||
<aside id="download-form">
|
||||
{% set currentTag = '' %}
|
||||
{% set currentTag = null %}
|
||||
{% if tag is defined %}
|
||||
{% set currentTag = tag %}
|
||||
{% endif %}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue