Compare commits
No commits in common. "d90fbbec3e290feb7f0ff0db695700e6ab36eac8" and "e333191efd65f794b19d58d219e9caca3c0778f5" have entirely different histories.
d90fbbec3e
...
e333191efd
|
|
@ -32,6 +32,7 @@ function MenuModal({savedInfo, reloadFunction}){
|
|||
body: JSON.stringify(info)
|
||||
},
|
||||
(resp) => {
|
||||
debugger
|
||||
if (Number(resp.resultCode) === Number(CODE.RCV_SUCCESS)) {
|
||||
alert("저장되었습니다.")
|
||||
reloadFunction();
|
||||
|
|
|
|||
|
|
@ -64,6 +64,10 @@ function List({}) {
|
|||
);
|
||||
},[]);
|
||||
|
||||
useEffect(() => {
|
||||
retrieveList(searchCondition);
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
retrieveList(searchCondition);
|
||||
}, [searchCondition.pageIndex]);
|
||||
|
|
|
|||
Loading…
Reference in New Issue