From c3ac52cbe52e4f15412d927839362f4d242ef49c Mon Sep 17 00:00:00 2001 From: bipproduction Date: Mon, 13 Oct 2025 17:31:01 +0800 Subject: [PATCH] tambahan --- .../scr/dashboard/apikey/apikey_page.tsx | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/pages/scr/dashboard/apikey/apikey_page.tsx b/src/pages/scr/dashboard/apikey/apikey_page.tsx index 2375e66..e22c23a 100644 --- a/src/pages/scr/dashboard/apikey/apikey_page.tsx +++ b/src/pages/scr/dashboard/apikey/apikey_page.tsx @@ -288,19 +288,19 @@ function ListApiKey() { fontSize: "0.9rem", }} > - - - Name - Description - Expires - Created - Updated - Actions - - - + + + Name + Description + Expires + Created + Updated + Actions + + + {apiKeys.map((apiKey: any, index: number) => ( - - {apiKey.name} - {apiKey.description || "-"} - + {apiKey.name} + {apiKey.description || "-"} + {new Date(apiKey.expiredAt).toLocaleDateString()} - - {new Date(apiKey.createdAt).toLocaleDateString()} - {new Date(apiKey.updatedAt).toLocaleDateString()} - + + {new Date(apiKey.createdAt).toLocaleDateString()} + {new Date(apiKey.updatedAt).toLocaleDateString()} + - - + + ))} - + )}