diff --git a/app/views/cards/display/common/_meta.html.erb b/app/views/cards/display/common/_meta.html.erb index e90348331..d27ff3485 100644 --- a/app/views/cards/display/common/_meta.html.erb +++ b/app/views/cards/display/common/_meta.html.erb @@ -16,8 +16,13 @@
- <%= card.creating? ? "Created" : "Updated" %> - <%= local_datetime_tag(card.updated_at, style: :daysago) %> + + <% if card.creating? %> +   + <% else %> + Updated + <%= local_datetime_tag(card.updated_at, style: :daysago) %> + <% end %>