Merge branch 'pull/5030'

This commit is contained in:
Anton Khorev 2024-07-31 16:56:28 +03:00
commit 869d86a31f
2 changed files with 9 additions and 1 deletions

View file

@ -2,4 +2,12 @@ module TraceHelper
def link_to_tag(tag)
link_to(tag, :tag => tag, :page => nil)
end
def trace_icon(trace, options = {})
options[:class] ||= "trace_image"
options[:alt] ||= ""
image_tag trace_icon_path(trace.user, trace),
options.merge(:size => 50)
end
end

View file

@ -2,7 +2,7 @@
<td>
<% if Settings.status != "gpx_offline" %>
<% if trace.inserted %>
<%= link_to image_tag(trace_icon_path(trace.user, trace), :alt => "", :class => "trace_image"),
<%= link_to trace_icon(trace),
show_trace_path(trace.user, trace),
:class => "d-inline-block" %>
<% else %>