diff --git a/adminfront/src/features/users/UserListPage.tsx b/adminfront/src/features/users/UserListPage.tsx index 7e30b90c..b7aaad10 100644 --- a/adminfront/src/features/users/UserListPage.tsx +++ b/adminfront/src/features/users/UserListPage.tsx @@ -146,6 +146,7 @@ function UserListPage() { React.useState(""); const [sortConfig, setSortConfig] = React.useState | null>(null); + const [bulkUploadOpen, setBulkUploadOpen] = React.useState(false); const limit = 1000; const offset = (page - 1) * limit; @@ -513,10 +514,16 @@ function UserListPage() { {t("ui.admin.users.csv_template", "템플릿 다운로드")} - query.refetch()} - /> + { + e.preventDefault(); + setBulkUploadOpen(true); + }} + className="cursor-pointer" + > + + {t("ui.admin.users.list.bulk_import", "일괄 등록 (CSV)")} + handleExport(false)} @@ -538,6 +545,12 @@ function UserListPage() { + query.refetch()} + />