From 4bb1bccd9c1c8d90bf21f997a1021de74df5444d Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Mon, 29 Apr 2013 16:12:16 -0400 Subject: [PATCH] Fix note formatting Prevents note coordinates from falling to the next line on the browse page. --- app/views/browse/note.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index f441b7b3b..fa587104e 100644 --- a/app/views/browse/note.html.erb +++ b/app/views/browse/note.html.erb @@ -46,7 +46,7 @@

<%= t "browse.node_details.coordinates" %>

-

<%= link_to ("#{number_with_delimiter(@note.lat)}, #{number_with_delimiter(@note.lon)}".html_safe), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %>

+

<%= link_to ("#{number_with_delimiter(@note.lat)}, #{number_with_delimiter(@note.lon)}".html_safe), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %>

-- 2.43.2