diff --git a/app/views/hyrax/notifications/_notifications.html.erb b/app/views/hyrax/notifications/_notifications.html.erb
index db3b3eac8e..5399a538c7 100644
--- a/app/views/hyrax/notifications/_notifications.html.erb
+++ b/app/views/hyrax/notifications/_notifications.html.erb
@@ -12,7 +12,7 @@
<% messages.each do |msg| %>
-
+ |
<%= msg.last_message.created_at.to_formatted_s(:long_ordinal) %>
diff --git a/app/views/hyrax/transfers/_received.html.erb b/app/views/hyrax/transfers/_received.html.erb
index fd86b86f31..5ebefc4302 100644
--- a/app/views/hyrax/transfers/_received.html.erb
+++ b/app/views/hyrax/transfers/_received.html.erb
@@ -13,7 +13,7 @@
<% unless req.sending_user.blank? %>
|
<%= show_transfer_request_title(req) %> |
-
+ |
<%= req.created_at.to_formatted_s(:long_ordinal) %>
diff --git a/app/views/hyrax/transfers/_sent.html.erb b/app/views/hyrax/transfers/_sent.html.erb
index 6183208964..3782d45560 100644
--- a/app/views/hyrax/transfers/_sent.html.erb
+++ b/app/views/hyrax/transfers/_sent.html.erb
@@ -13,7 +13,7 @@
<% unless req.receiving_user.blank? %>
|
<%= show_transfer_request_title(req) %> |
-
+ |
<%= req.created_at.to_formatted_s(:long_ordinal) %>
diff --git a/app/views/hyrax/users/_activity_log.html.erb b/app/views/hyrax/users/_activity_log.html.erb
index 0860115b30..4aa8a8ce4f 100644
--- a/app/views/hyrax/users/_activity_log.html.erb
+++ b/app/views/hyrax/users/_activity_log.html.erb
@@ -10,8 +10,8 @@
<% next if event[:action].blank? or event[:timestamp].blank? %>
|
<%= event[:action].html_safe %> |
-
- <% time = Time.zone.at(event[:timestamp].to_i) %>
+ <% time = Time.zone.at(event[:timestamp].to_i) %>
+ |
<%= time.to_formatted_s(:long_ordinal) %>
|