aboutsummaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
Diffstat (limited to 'app/views')
-rw-r--r--app/views/searches/show.html.erb2
-rw-r--r--app/views/tags/_tag.html.erb4
2 files changed, 3 insertions, 3 deletions
diff --git a/app/views/searches/show.html.erb b/app/views/searches/show.html.erb
index b7d3854..16e5996 100644
--- a/app/views/searches/show.html.erb
+++ b/app/views/searches/show.html.erb
@@ -1 +1 @@
-<%= render "search", items: @search.results %>
+<%= render "searches/search", items: @search.results %>
diff --git a/app/views/tags/_tag.html.erb b/app/views/tags/_tag.html.erb
index 0a82898..9fe2669 100644
--- a/app/views/tags/_tag.html.erb
+++ b/app/views/tags/_tag.html.erb
@@ -1,9 +1,9 @@
<div class="tag-container" id="<%= dom_id tag %>">
<div class="name">
- <%= tag.name %>
+ <%= link_to tag.name, edit_tag_path(tag), title: I18n.t('general.edit').capitalize %>
</div>
<div class="action">
- <%= link_to I18n.t('general.edit'), edit_tag_path(tag) %> |
+ <%= link_to I18n.t('searches.object'), tag_search_path(tag) %> |
<%= link_to I18n.t('general.delete'), tag_path(tag), data: { "turbo-method": :delete } %>
</div>
</div>