summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/swp/table/swp-table-columns.tsx2
-rw-r--r--lib/vendor-document-list/plant/upload/table.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/swp/table/swp-table-columns.tsx b/lib/swp/table/swp-table-columns.tsx
index 9fb85d2a..09207be8 100644
--- a/lib/swp/table/swp-table-columns.tsx
+++ b/lib/swp/table/swp-table-columns.tsx
@@ -176,7 +176,7 @@ export const swpDocumentColumns: ColumnDef<DocumentListItem>[] = [
const url = window.URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
- a.download = `${docNumber}_cover.docx`;
+ a.download = `${docNumber}_cover.pdf`;
document.body.appendChild(a);
a.click();
window.URL.revokeObjectURL(url);
diff --git a/lib/vendor-document-list/plant/upload/table.tsx b/lib/vendor-document-list/plant/upload/table.tsx
index 2edd9717..ba924853 100644
--- a/lib/vendor-document-list/plant/upload/table.tsx
+++ b/lib/vendor-document-list/plant/upload/table.tsx
@@ -191,7 +191,7 @@ export function StageSubmissionsTable({ promises, selectedProjectId }: StageSubm
const { fileUrl, fileName } = await res.json();
// quickDownload 사용
- quickDownload(fileUrl, fileName || `${projectCode}_cover.docx`);
+ quickDownload(fileUrl, fileName || `${projectCode}_cover.pdf`);
toast.success("커버 페이지 다운로드를 시작했습니다.");