diff --git a/app/views/participants/show.html.erb b/app/views/participants/show.html.erb
index c924ebe..1c5e2c6 100644
--- a/app/views/participants/show.html.erb
+++ b/app/views/participants/show.html.erb
@@ -78,8 +78,12 @@
<%= employment.start_date.strftime('%B %d, %Y') if employment.start_date.present? %> |
<%= employment.end_date.strftime('%B %d, %Y') if employment.end_date.present? %> |
- <%= link_to 'Edit', edit_employment_path(employment), class: 'btn btn-sm btn-primary' %>
- <%= link_to 'Remove', employment, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-sm btn-danger' %>
+ <%= link_to edit_employment_path(employment), class: 'btn btn-sm btn-warning' do %>
+
+ <% end %>
+ <%= link_to employment, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-sm btn-danger' do %>
+
+ <% end %>
|
<% end %>