diff --git a/app/views/tag_implications/index.html.erb b/app/views/tag_implications/index.html.erb
index acdf8b416..74df15ccf 100644
--- a/app/views/tag_implications/index.html.erb
+++ b/app/views/tag_implications/index.html.erb
@@ -32,10 +32,9 @@
<% if CurrentUser.is_admin? %>
<%= link_to "Delete", tag_implication_path(tag_implication), :remote => true, :method => :delete, :confirm => "Are you sure you want to delete this implication?" %>
- <% end %>
-
- <% if tag_implication.is_pending? %>
- | <%= link_to "Approve", approve_tag_implication_path(tag_implication), :remote => true, :method => :post %>
+ <% if tag_implication.is_pending? %>
+ | <%= link_to "Approve", approve_tag_implication_path(tag_implication), :remote => true, :method => :post %>
+ <% end %>
<% end %>
|