Skip to content

Commit

Permalink
chore :: 엑셀 파일명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyuna committed Aug 31, 2024
1 parent 31c5c65 commit 0b20e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apis/weekendMeal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Printexcel = () => {
const url = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement("a");
link.href = url;
link.setAttribute("download", "주말급식리스트.xlsx");
link.setAttribute("download", "10월 주말급식리스트.xlsx");
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
Expand Down

0 comments on commit 0b20e31

Please sign in to comment.