개인정보 front-end 수정

thkim
Lim\jun 2024-01-05 17:56:07 +09:00
parent 29690fdf38
commit 9b5e5f51b0
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ function PrivacyConnections(props) {
listTag.push(<p className="no_data" key="0">데이터가 없습니다.</p>); //
const resultCnt = parseInt(resp.result.resultCnt);
const currentPageNo = resp.result.paginationInfo.currentPageNo;
const pageSize = resp.result.paginationInfo.pageSize;
const currentPageNo = resp.result.paginationInfo.pageIndex;
const pageSize = resp.result.paginationInfo.rowCnt;
const startIndex = (currentPageNo - 1) * pageSize;
const endIndex = Math.min(startIndex + pageSize, resultCnt);