Commit 46cedcbe7568459f7106c5a097ef99a5357d37d7
Committed by
Antonio Terceiro
1 parent
3837aa6b
Exists in
master
and in
29 other branches
Removing list bullets from tag search view
Showing
2 changed files
with
9 additions
and
1 deletions
Show diff stats
app/views/search/tag.rhtml
... | ... | @@ -9,7 +9,9 @@ |
9 | 9 | <% cache_timeout(@tag_cache_key, 4.hour.from_now) do %> |
10 | 10 | <div class='search-tagged-items'> |
11 | 11 | <% @tagged.each do |hit| %> |
12 | - <%= render :partial => partial_for_class(hit.class), :object => hit %> | |
12 | + <ul class="clean-list"> | |
13 | + <%= render :partial => partial_for_class(hit.class), :object => hit %> | |
14 | + </ul> | |
13 | 15 | <br style='clear: left;'/> |
14 | 16 | <% end %> |
15 | 17 | ... | ... |