Skip to content

Commit

Permalink
Fix a typo in block_search_result.html.twig (#4638)
Browse files Browse the repository at this point in the history
`box-primary` wasn't separated from `{{ visibility_class }}`, causing weird uncoloured styling on several search results blocks.
  • Loading branch information
mlang38 authored and greg0ire committed Sep 4, 2017
1 parent 5513a8d commit 8e0d808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/views/Block/block_search_result.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ file that was distributed with this source code.
{% endif %}

<div class="col-lg-4 col-md-6 search-box-item {{ visibility_class }}">
<div class="box box-solid box-primary{{ visibility_class }}">
<div class="box box-solid box-primary {{ visibility_class }}">
<div class="box-header with-border {{ visibility_class }}">
{% set icon = settings.icon|default('') %}
{{ icon|raw }}
Expand Down

0 comments on commit 8e0d808

Please sign in to comment.