diff --git a/app/views/spree/admin/promotions/index.html.erb b/app/views/spree/admin/promotions/index.html.erb
index 22efc38109..35062e04bd 100644
--- a/app/views/spree/admin/promotions/index.html.erb
+++ b/app/views/spree/admin/promotions/index.html.erb
@@ -64,7 +64,7 @@
<%= promotion.description %> |
<%= promotion.usage_limit.nil? ? "∞" : promotion.usage_limit %> |
<%= Spree.t(:current_promotion_usage, count: promotion.credits_count) %> |
- <%= promotion.expires_at.to_date.to_s(:short_date) if promotion.expires_at %> |
+ <%= promotion.expires_at.strftime('%F %T %Z') if promotion.expires_at %> |
<%= link_to_edit promotion, no_text: true if can?(:edit, promotion) %>
|