From e378fdd3e8b980906eb401acd947fa2eebba903c Mon Sep 17 00:00:00 2001 From: chan Date: Thu, 7 May 2026 14:18:15 +0900 Subject: [PATCH] feat: simplify Tenant list UI by removing actions column and making tenant name clickable --- .../tenants/routes/TenantListPage.tsx | 42 +++---------------- 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/adminfront/src/features/tenants/routes/TenantListPage.tsx b/adminfront/src/features/tenants/routes/TenantListPage.tsx index e3459b49..3f877ceb 100644 --- a/adminfront/src/features/tenants/routes/TenantListPage.tsx +++ b/adminfront/src/features/tenants/routes/TenantListPage.tsx @@ -6,7 +6,6 @@ import { ArrowUpDown, Download, FileSpreadsheet, - Pencil, Plus, RefreshCw, Search, @@ -634,9 +633,6 @@ function TenantListPage() { {getSortIcon("updatedAt")} - - {t("ui.admin.tenants.table.actions", "ACTIONS")} - @@ -682,7 +678,12 @@ function TenantListPage() {
- {tenant.name} + + {tenant.name} + {isSeedTenant(tenant) && ( {t("ui.admin.tenants.seed_badge", "초기 설정")} @@ -725,37 +726,6 @@ function TenantListPage() { ? new Date(tenant.updatedAt).toLocaleString("ko-KR") : "-"} - -
- - -
-
))}