Compare commits

..

No commits in common. "d90fbbec3e290feb7f0ff0db695700e6ab36eac8" and "e333191efd65f794b19d58d219e9caca3c0778f5" have entirely different histories.

2 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,7 @@ function MenuModal({savedInfo, reloadFunction}){
body: JSON.stringify(info)
},
(resp) => {
debugger
if (Number(resp.resultCode) === Number(CODE.RCV_SUCCESS)) {
alert("저장되었습니다.")
reloadFunction();

View File

@ -64,6 +64,10 @@ function List({}) {
);
},[]);
useEffect(() => {
retrieveList(searchCondition);
}, []);
useEffect(() => {
retrieveList(searchCondition);
}, [searchCondition.pageIndex]);