X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d74d4f8d195673250c3f2e841d28f185d74d8849..7dbf8d83369cb73929080c4ba23fdd7dcd0184df:/app/views/notes/_note.json.jsonify diff --git a/app/views/notes/_note.json.jsonify b/app/views/notes/_note.json.jsonify index f8872c717..b96439922 100644 --- a/app/views/notes/_note.json.jsonify +++ b/app/views/notes/_note.json.jsonify @@ -2,7 +2,7 @@ json.type "Feature" json.geometry do json.type "Point" - json.coordinates [ note.lon, note.lat ] + json.coordinates [ note.lon.to_f, note.lat.to_f ] end json.properties do @@ -18,7 +18,7 @@ json.properties do json.date_created note.created_at json.status note.status - json.closed_at note.closed_at if note.status == "closed" + json.closed_at note.closed_at if note.closed? json.comments(note.comments) do |comment| json.date comment.created_at @@ -26,7 +26,7 @@ json.properties do if comment.author json.uid comment.author.id json.user comment.author.display_name - json.user_url user_url(:display_name => comment.author.display_name, :host => SERVER_URL) + json.user_url user_url(:display_name => comment.author.display_name, :only_path => false) end json.action comment.event