diff --git a/frontend/lib/registry/components/table-list/TableListComponent.tsx b/frontend/lib/registry/components/table-list/TableListComponent.tsx index a12bf494..c9d41dce 100644 --- a/frontend/lib/registry/components/table-list/TableListComponent.tsx +++ b/frontend/lib/registry/components/table-list/TableListComponent.tsx @@ -4014,13 +4014,24 @@ export const TableListComponent: React.FC = ({ return -; } - // 파일 개수와 아이콘 표시 + // 파일 이름 표시 (여러 개면 쉼표로 구분) const { Paperclip } = require("lucide-react"); + const fileNames = files.map((f: any) => f.realFileName || f.real_file_name || f.name || "파일").join(", "); + return ( -
- - {files.length} - +
+ + + {fileNames} + + {files.length > 1 && ( + + ({files.length}) + + )}
); }