From 88c734bbbecaae639e93fb92a46b5b74c133d1e0 Mon Sep 17 00:00:00 2001 From: robert velasco Date: Thu, 29 Apr 2021 12:31:28 -0500 Subject: [PATCH] Style change on change status button to outline Co-authored-by: EusebioAjas Co-authored-by: Anxhe Co-authored-by: SpidySamurai --- app/views/employees/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/employees/index.html.erb b/app/views/employees/index.html.erb index aa77eca..5baf414 100644 --- a/app/views/employees/index.html.erb +++ b/app/views/employees/index.html.erb @@ -27,7 +27,7 @@ <%= link_to "#{ employee.state ? 'Enabled' : 'Disabled' }", switch_state_employee_company_branch_employee_path(@company_branch, employee), - method: :patch, remote: :true, class: "btn btn-xs btn-#{ employee.state ? 'success' : 'warning' }" %> + method: :patch, remote: :true, class: "btn btn-xs btn-outline-#{ employee.state ? 'success' : 'warning' }" %> <%= link_to 'Show', company_branch_employee_path(@company_branch, employee), class: "btn btn-outline-secondary" %>