diff --git a/src/components/common/rows/TextAreaRow/TextAreaRow.module.css b/src/components/common/rows/TextAreaRow/TextAreaRow.module.css index 6751461a..e1fae9d1 100644 --- a/src/components/common/rows/TextAreaRow/TextAreaRow.module.css +++ b/src/components/common/rows/TextAreaRow/TextAreaRow.module.css @@ -12,6 +12,7 @@ .contentInput { height: 100%; + white-space: pre-wrap; } .wrapper { diff --git a/src/components/pages/lists/ProfReviewListSection/ProfReviewListSection.tsx b/src/components/pages/lists/ProfReviewListSection/ProfReviewListSection.tsx index 98d740e8..90fe5739 100644 --- a/src/components/pages/lists/ProfReviewListSection/ProfReviewListSection.tsx +++ b/src/components/pages/lists/ProfReviewListSection/ProfReviewListSection.tsx @@ -88,6 +88,7 @@ function ProfReviewListSection({ isFinal }: Props) { [name]: value === "" ? undefined : value, pageNumber: REFRESH_DEFAULT_PAGE_NUMBER, })) as any); + setPageNumber(REFRESH_DEFAULT_PAGE_NUMBER); }; useEffect(() => { diff --git a/src/components/pages/lists/ProfRevisionListSection/ProfRevisionListSection.tsx b/src/components/pages/lists/ProfRevisionListSection/ProfRevisionListSection.tsx index 3e327ec9..a0104db1 100644 --- a/src/components/pages/lists/ProfRevisionListSection/ProfRevisionListSection.tsx +++ b/src/components/pages/lists/ProfRevisionListSection/ProfRevisionListSection.tsx @@ -54,6 +54,7 @@ function ProfRevisionListSection() { [name]: value === "" ? undefined : value, pageNumber: REFRESH_DEFAULT_PAGE_NUMBER, })) as any); + setPageNumber(REFRESH_DEFAULT_PAGE_NUMBER); }; useEffect(() => { diff --git a/src/components/pages/lists/admin/AchievementListSection/AchievementListSection.tsx b/src/components/pages/lists/admin/AchievementListSection/AchievementListSection.tsx index c25ff44c..43354b1d 100644 --- a/src/components/pages/lists/admin/AchievementListSection/AchievementListSection.tsx +++ b/src/components/pages/lists/admin/AchievementListSection/AchievementListSection.tsx @@ -70,6 +70,7 @@ function AchievementListSection() { [name]: value === "" ? undefined : value, pageNumber: REFRESH_DEFAULT_PAGE_NUMBER, })) as any); + setPageNumber(REFRESH_DEFAULT_PAGE_NUMBER); }; // Todo: 파일명 및 필터 저장 방식 논의 @@ -222,7 +223,11 @@ function AchievementListSection() { ))}
- +
); diff --git a/src/components/pages/lists/admin/ProfessorListSection/ProfessorListSection.tsx b/src/components/pages/lists/admin/ProfessorListSection/ProfessorListSection.tsx index d0dbd8a5..731429db 100644 --- a/src/components/pages/lists/admin/ProfessorListSection/ProfessorListSection.tsx +++ b/src/components/pages/lists/admin/ProfessorListSection/ProfessorListSection.tsx @@ -90,6 +90,7 @@ function ProfessorListSection() { [name]: value === "" ? undefined : value, pageNumber: REFRESH_DEFAULT_PAGE_NUMBER, })) as any); + setPageNumber(REFRESH_DEFAULT_PAGE_NUMBER); }; useEffect(() => { diff --git a/src/components/pages/lists/admin/ReviewListSection/ReviewListSection.tsx b/src/components/pages/lists/admin/ReviewListSection/ReviewListSection.tsx index d73ae5f9..10b220cd 100644 --- a/src/components/pages/lists/admin/ReviewListSection/ReviewListSection.tsx +++ b/src/components/pages/lists/admin/ReviewListSection/ReviewListSection.tsx @@ -90,6 +90,7 @@ function ReviewListSection() { [name]: value === "" ? undefined : value, pageNumber: REFRESH_DEFAULT_PAGE_NUMBER, })) as any); + setPageNumber(REFRESH_DEFAULT_PAGE_NUMBER); }; useEffect(() => { @@ -155,7 +156,7 @@ function ReviewListSection() { data={[ { label: "예심", value: "PRELIMINARY" }, { label: "본심", value: "MAIN" }, - { label: "수정 단계", value: "REVISION" }, + // { label: "수정 단계", value: "REVISION" }, ]} /> diff --git a/src/components/pages/lists/admin/ReviewResultListSection/ReviewResultListSection.tsx b/src/components/pages/lists/admin/ReviewResultListSection/ReviewResultListSection.tsx index e8722905..b0bd648b 100644 --- a/src/components/pages/lists/admin/ReviewResultListSection/ReviewResultListSection.tsx +++ b/src/components/pages/lists/admin/ReviewResultListSection/ReviewResultListSection.tsx @@ -13,7 +13,7 @@ import { useRouter } from "next/navigation"; import { ChangeEvent, useEffect, useState } from "react"; import { ActionIcon, Button, Center, Group, Popover, Select, Skeleton, Stack } from "@mantine/core"; import { SectionHeader } from "@/components/common/SectionHeader"; -import { IconDownload } from "@tabler/icons-react"; +import { IconDownload, IconRotate } from "@tabler/icons-react"; import { Table } from "@/components/common/Table"; import Pagination from "@/components/common/Pagination"; import { DepartmentSelect } from "@/components/common/selects/DepartmentSelect"; @@ -101,6 +101,7 @@ function ReviewResultListSection() { [name]: value === "" ? undefined : value, pageNumber: REFRESH_DEFAULT_PAGE_NUMBER, })) as any); + setPageNumber(REFRESH_DEFAULT_PAGE_NUMBER); }; useEffect(() => { @@ -181,7 +182,7 @@ function ReviewResultListSection() { data={[ { label: "예심", value: "PRELIMINARY" }, { label: "본심", value: "MAIN" }, - { label: "수정 단계", value: "REVISION" }, + // { label: "수정 단계", value: "REVISION" }, ]} /> diff --git a/src/components/pages/lists/admin/StudentListSection/StudentListSection.tsx b/src/components/pages/lists/admin/StudentListSection/StudentListSection.tsx index 064b6f5b..746cea0d 100644 --- a/src/components/pages/lists/admin/StudentListSection/StudentListSection.tsx +++ b/src/components/pages/lists/admin/StudentListSection/StudentListSection.tsx @@ -90,6 +90,7 @@ function StudentListSection() { [name]: value === "" ? undefined : value, pageNumber: REFRESH_DEFAULT_PAGE_NUMBER, })) as any); + setPageNumber(REFRESH_DEFAULT_PAGE_NUMBER); }; useEffect(() => {