]> git.openstreetmap.org Git - rails.git/commitdiff
Changed note's first comment body to description
authorNenad Vujicic <nenadus@gmail.com>
Tue, 14 Jan 2025 12:32:22 +0000 (13:32 +0100)
committerNenad Vujicic <nenadus@gmail.com>
Wed, 15 Jan 2025 11:03:08 +0000 (12:03 +0100)
Replaced using note's first comment body with note's description.

app/views/notes/index.html.erb
app/views/notes/show.html.erb

index c883126658e7c69b7cb278f4d9724c35f3d12bdd..f805a10402b413aa295875010a051b7ecbbef76f 100644 (file)
@@ -48,7 +48,7 @@
       </td>
       <td><%= link_to note.id, note %></td>
       <td><%= note_author(note.author) %></td>
       </td>
       <td><%= link_to note.id, note %></td>
       <td><%= note_author(note.author) %></td>
-      <td><%= note.comments.first.body.to_html %></td>
+      <td><%= note.description.to_html %></td>
       <td><%= friendly_date_ago(note.created_at) %></td>
       <td><%= friendly_date_ago(note.updated_at) %></td>
     </tr>
       <td><%= friendly_date_ago(note.created_at) %></td>
       <td><%= friendly_date_ago(note.updated_at) %></td>
     </tr>
index d17612e2929be2a70b315dc78e955e2da56c03ef..a320240488e716224a8908bbed5b612988e7907e 100644 (file)
@@ -5,7 +5,7 @@
 <div>
   <h4><%= t(".description") %></h4>
   <div class="overflow-hidden ms-2">
 <div>
   <h4><%= t(".description") %></h4>
   <div class="overflow-hidden ms-2">
-    <%= h(@note_comments.first.body.to_html) %>
+    <%= h(@note.description.to_html) %>
   </div>
 
   <div class="details" data-coordinates="<%= @note.lat %>,<%= @note.lon %>" data-status="<%= @note.status %>">
   </div>
 
   <div class="details" data-coordinates="<%= @note.lat %>,<%= @note.lon %>" data-status="<%= @note.status %>">