diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css
index 0598f6a..640ce81 100644
--- a/app/assets/stylesheets/application.css
+++ b/app/assets/stylesheets/application.css
@@ -22,5 +22,3 @@
.pagination .page-item.active .page-link {
border-color: var(--bs-dark);
}
-
-
\ No newline at end of file
diff --git a/app/views/employers/show.html.erb b/app/views/employers/show.html.erb
index a206e56..da7afe2 100644
--- a/app/views/employers/show.html.erb
+++ b/app/views/employers/show.html.erb
@@ -14,7 +14,11 @@
Address |
- <%= [@employer.address_line_1, @employer.address_line_2, @employer.city, @employer.state, @employer.zip].reject(&:blank?).join(', ') %> |
+
+ <%= @employer.address_line_1 %><%= ', ' + @employer.address_line_2 unless @employer.address_line_2.blank? %>
+
+ <%= "#{@employer.city}, #{@employer.state} #{@employer.zip}" %>
+ |
Phone |
diff --git a/app/views/participants/show.html.erb b/app/views/participants/show.html.erb
index be2f698..20dece5 100644
--- a/app/views/participants/show.html.erb
+++ b/app/views/participants/show.html.erb
@@ -14,7 +14,10 @@
Address |
- <%= [@participant.address_line_1, @participant.address_line_2, @participant.city, @participant.state, @participant.zip].reject(&:blank?).join(', ') %> |
+ <%= @participant.address_line_1 %><%= ', ' + @participant.address_line_2 unless @participant.address_line_2.blank? %>
+
+ <%= "#{@participant.city}, #{@participant.state} #{@participant.zip}" %>
+ |
Phone |
diff --git a/app/views/workers/show.html.erb b/app/views/workers/show.html.erb
index 79357b9..afaa274 100644
--- a/app/views/workers/show.html.erb
+++ b/app/views/workers/show.html.erb
@@ -14,7 +14,11 @@
Address |
- <%= [@worker.address_line_1, @worker.address_line_2, @worker.city, @worker.state, @worker.zip].reject(&:blank?).join(', ') %> |
+
+ <%= @worker.address_line_1 %><%= ', ' + @worker.address_line_2 unless @worker.address_line_2.blank? %>
+
+ <%= "#{@worker.city}, #{@worker.state} #{@worker.zip}" %>
+ |
Phone |