8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / views / application / _show_star.html.erb
1 <% if current_user and is_starred %>
2   <%= link_to(star_path(status: 'delete', id:@object.uuid, action_method: 'get'), style: "color:#D00", class: "btn btn-xs star-unstar", title: "Remove from list of favorites", remote: true) do  %>
3             <i class="fa fa-lg fa-star"></i>
4           <% end %>
5 <% else %>
6   <%= link_to(star_path(status: 'create', id:@object.uuid, action_method: 'get'), class: "btn btn-xs star-unstar", title: "Add to list of favorites", remote: true) do %>
7             <i class="fa fa-lg fa-star-o"></i>
8           <% end %>
9 <% end %>