diff --git a/app/components/admin/site_customization/pages/index_component.html.erb b/app/components/admin/site_customization/pages/index_component.html.erb
index 1eb35d59c..68db19b5f 100644
--- a/app/components/admin/site_customization/pages/index_component.html.erb
+++ b/app/components/admin/site_customization/pages/index_component.html.erb
@@ -21,8 +21,8 @@
| <%= page.title %> |
<%= page.slug %> |
- <%= I18n.l page.created_at, format: :short %> |
- <%= I18n.l page.created_at, format: :short %> |
+ <%= I18n.l page.created_at, format: :long %> |
+ <%= I18n.l page.updated_at, format: :long %> |
<%= t("admin.site_customization.pages.page.status_#{page.status}") %> |
<%= render Admin::TableActionsComponent.new(page) do |actions| %>
diff --git a/spec/components/admin/site_customization/pages/index_component_spec.rb b/spec/components/admin/site_customization/pages/index_component_spec.rb
new file mode 100644
index 000000000..1792e52cb
--- /dev/null
+++ b/spec/components/admin/site_customization/pages/index_component_spec.rb
@@ -0,0 +1,15 @@
+require "rails_helper"
+
+describe Admin::SiteCustomization::Pages::IndexComponent, controller: Admin::SiteCustomization::PagesController do
+ before { SiteCustomization::Page.delete_all }
+
+ it "shows date in created_at and updated_at fields" do
+ custom_page = create(:site_customization_page, created_at: "2015-07-15 13:32:13")
+ custom_page.update!(updated_at: "2019-12-09 09:19:29")
+
+ render_inline Admin::SiteCustomization::Pages::IndexComponent.new(SiteCustomization::Page.page(1))
+
+ expect(page).to have_content "July 15, 2015 13:32"
+ expect(page).to have_content "December 09, 2019 09:19"
+ end
+end
|