Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/views/tag_wranglers/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<li>
<%= link_to wrangler, tag_wrangler_path(:id => wrangler) %>
<!--BACK END PLS take off this span and give the link the class delete-->
<span class="action" title="remove">
<%= link_to 'x', tag_wrangler_path(redirect_params.merge(:id => wrangler, :fandom_id => assignments.first.id)), :method => :delete %>
<span class="delete">
<%= link_to "×", tag_wrangler_path(redirect_params.merge(id: wrangler, fandom_id: assignments.first.id)), method: :delete, title: "remove" %>
</span>
</li>
<% end %>
Expand Down
2 changes: 1 addition & 1 deletion features/tags_and_wrangling/tag_wrangling_admin.feature
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Feature: Tag wrangling
Given the tag wrangler "tangler" with password "wr@ngl3r" is wrangler of "Testing"
When I am logged in as a "tag_wrangling" admin
And I am on the wranglers page
And I follow "x"
And I follow "×"
Then I should see "Wranglers were successfully unassigned!"
And "Testing" should not be assigned to the wrangler "tangler"
When I edit the tag "Testing"
Expand Down
4 changes: 2 additions & 2 deletions features/tags_and_wrangling/tag_wrangling_more.feature
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Feature: Tag wrangling: assigning wranglers, using the filters on the Wranglers
Given the tag wrangler "tangler" with password "wr@ngl3r" is wrangler of "Testing"
And I am logged in as "tangler" with password "wr@ngl3r"
When I am on the wranglers page
And I follow "x"
And I follow "×"
Then I should see "Wranglers were successfully unassigned!"
And "Testing" should not be assigned to the wrangler "tangler"
When I edit the tag "Testing"
Expand All @@ -104,7 +104,7 @@ Feature: Tag wrangling: assigning wranglers, using the filters on the Wranglers
| wranglerette |
When I am logged in as "wranglerette"
And I am on the wranglers page
And I follow "x"
And I follow "×"
Then I should see "Wranglers were successfully unassigned!"
And "Testing" should not be assigned to the wrangler "tangler"
When I edit the tag "Testing"
Expand Down
Loading