mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
make cucumber scenarios pass
This commit is contained in:
parent
12d8915eda
commit
a4d98a705a
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<% note = note_details -%>
|
||||
<div class="note_boby"><%= format_note(note.body) %></div>
|
||||
<div class="note_boby"><%= Tracks::Utils.render_text(note.body) %></div>
|
||||
|
||||
<div class="note_footer">
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<%= link_to_edit_project(project, t('projects.edit_project_settings')) %>
|
||||
</div>
|
||||
<% unless project.description.blank? -%>
|
||||
<div class="project_description"><%= format_note(project.description) %></div>
|
||||
<div class="project_description"><%= Tracks::Utils.render_text(project.description) %></div>
|
||||
<% end -%>
|
||||
</div>
|
||||
<div id="<%= dom_id(project, 'edit') %>" class="edit-form" style="display:none;">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<h2><%= t('todos.next_action_description') + " (" + link_to(t('common.go_back'), @return_path) %>)</h2>
|
||||
<%= link_to @todo.description, todo_path(@todo, :format => 'm') -%>
|
||||
<h2><%= t('todos.notes') %></h2>
|
||||
<%= format_note(@todo.notes) %>
|
||||
<%= Tracks::Utils.render_text(@todo.notes) %>
|
||||
<%= link_to t('common.back'), @return_path %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue