aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig
diff options
context:
space:
mode:
authorAlexandr Danilov <bitbucket@modos189.ru>2015-08-17 01:29:51 +0300
committerAlexandr Danilov <bitbucket@modos189.ru>2015-08-17 01:29:51 +0300
commitd75a9fa38b24b57fbbb11d52c17d56d04387718f (patch)
treeda74d6f4a906f7a4326b6dfa9fa1bce2696231cd /src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig
parent0e7cf1fc502e6d01f3059cb821420485bcb4614a (diff)
downloadwallabag-d75a9fa38b24b57fbbb11d52c17d56d04387718f.tar.gz
wallabag-d75a9fa38b24b57fbbb11d52c17d56d04387718f.tar.zst
wallabag-d75a9fa38b24b57fbbb11d52c17d56d04387718f.zip
Fix:
When I click on "new article" icon, and on the cross after, the filter icon is no more visible. When I change the size of my browser window, the filter appears but I didn't click on the icon Bug: can't click on pagination > 1 display bug: when we load homepage, we see quickly the filter form new entry form: when we click on the field, the history of the field is at the left of the screen, not below the field (see screenshot)
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig
index 1a3ab86d..fda53e5b 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/new_form.html.twig
@@ -8,7 +8,7 @@
8 <span class="black-text">{{ form_errors(form.url) }}</span> 8 <span class="black-text">{{ form_errors(form.url) }}</span>
9 {% endif %} 9 {% endif %}
10 10
11 {{ form_widget(form.url) }} 11 {{ form_widget(form.url, { 'attr': {'autocomplete': 'off'} }) }}
12 12
13 <div class="hidden">{{ form_rest(form) }}</div> 13 <div class="hidden">{{ form_rest(form) }}</div>
14</form> 14</form>