Skip to content
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.

Commit

Permalink
[bug] fix sorting wrong index on backlog
Browse files Browse the repository at this point in the history
  • Loading branch information
levent committed Feb 23, 2015
1 parent 1fcb728 commit 6fda3c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/views/backlog/index.html.erb
Expand Up @@ -22,12 +22,12 @@

<div class="row">
<div class="columns large-24 small-24 medium-24">
<div id="backlog-items" data-project="<%= @project.id %>" data-velocity="<%= @velocity %>">
<%= form_tag destroy_multiple_project_backlog_index_path(@project), method: :delete do %>
<%= render @user_stories %>
<div id="backlog-items" data-project="<%= @project.id %>" data-velocity="<%= @velocity %>">
<%= render @user_stories %>
</div>
<%= submit_tag "Delete selected", data: {confirm: "Are you sure you want to delete multiple user stories?"}, class: "button small alert" %>
<% end %>
</div>
</div>
</div>
<hr>
Expand Down

0 comments on commit 6fda3c4

Please sign in to comment.