From 5f328c842abcdbc14aedbc0a66061f3e6d4e937a Mon Sep 17 00:00:00 2001 From: evazion Date: Mon, 17 Sep 2018 21:01:26 -0500 Subject: [PATCH] /artist_urls: fix timestamp formatting. --- app/views/artist_urls/index.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/artist_urls/index.html.erb b/app/views/artist_urls/index.html.erb index 0c86c0a8b..eaa027766 100644 --- a/app/views/artist_urls/index.html.erb +++ b/app/views/artist_urls/index.html.erb @@ -31,8 +31,8 @@ <%= tag.td external_link_to(artist_url.url.to_s) %> <%= tag.td external_link_to(artist_url.normalized_url) %> <%= tag.td artist_url.is_active.to_s %> - <%= tag.td artist_url.created_at %> - <%= tag.td artist_url.updated_at %> + <%= tag.td compact_time(artist_url.created_at) %> + <%= tag.td compact_time(artist_url.updated_at) %> <% end %>