forked from decidim/decidim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove additional space from general search for comments that contain…
… links (decidim#13645) * Removed additional space from comments search section * Resolved comment * Fix test * Added space between title and author
- Loading branch information
1 parent
09fcea7
commit 093d48d
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
<%= link_to resource_path, class: "card__search", id: dom_id(resource) do %> | ||
<%= content_tag :div, id: dom_id(resource), class: "card__search" do %> | ||
<%= content_tag title_tag, class: "h4 card__search-title" do %> | ||
<%= title %> | ||
<%= link_to resource_path, class: "card__search" do %> | ||
<%= title %> | ||
<% end %> | ||
<% end %> | ||
<% if metadata_cell.present? %> | ||
<div class="card__search-metadata"> | ||
<%= cell metadata_cell, resource, links: false %> | ||
<%= cell metadata_cell, resource, links: false %> | ||
</div> | ||
<% end %> | ||
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters