X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1977e66ace0751b8b4fdf3b55bde367ec33e7c57..de8a49a9d714fdd20409e014e292da68fd8fb078:/app/views/users/_contact.html.erb diff --git a/app/views/users/_contact.html.erb b/app/views/users/_contact.html.erb index 4446c519d..a5b29411c 100644 --- a/app/views/users/_contact.html.erb +++ b/app/views/users/_contact.html.erb @@ -22,10 +22,10 @@ <% changeset = contact.changesets.first %> <% if changeset %> <%= t("users.show.latest edit", :ago => time_ago_in_words(changeset.created_at, :scope => :'datetime.distance_in_words_ago')) %> - <% comment = changeset.tags["comment"].to_s != "" ? changeset.tags["comment"] : t("browse.no_comment") %> - "<%= link_to(comment, - { :controller => "browse", :action => "changeset", :id => changeset.id }, - { :title => t("changesets.changeset.view_changeset_details") }) %>" + <% comment = changeset.tags["comment"].to_s == "" ? t("browse.no_comment") : changeset.tags["comment"] %> + <%= link_to(comment, + { :controller => "browse", :action => "changeset", :id => changeset.id }, + { :title => t("changesets.changeset.view_changeset_details") }) %> <% else %> <%= t "changesets.changeset.no_edits" %> <% end %>