From b62f6c9d7e953e176d9e6e0d91e6f1c1773b3836 Mon Sep 17 00:00:00 2001 From: Ziray Hao Date: Thu, 20 Mar 2025 23:51:58 -0700 Subject: [PATCH] Add table column to show template `updatedAt` field --- apps/web/src/components/Dashboard/Templates.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/web/src/components/Dashboard/Templates.tsx b/apps/web/src/components/Dashboard/Templates.tsx index 85c0a0337e..bd1319d839 100644 --- a/apps/web/src/components/Dashboard/Templates.tsx +++ b/apps/web/src/components/Dashboard/Templates.tsx @@ -153,6 +153,7 @@ export function TemplatesContent({ RAM MiB Created by Created at + Updated at @@ -191,6 +192,9 @@ export function TemplatesContent({ {new Date(template.createdAt).toLocaleString()} + + {new Date(template.updatedAt).toLocaleString()} +