기관, 앱 승인시 팝업 닫기 오류 수정

This commit is contained in:
Rinjae
2025-12-12 13:27:45 +09:00
parent 3660ee4f85
commit b6ddc1c8b4
4 changed files with 45 additions and 11 deletions
@@ -61,14 +61,14 @@ public class PortalApprovalManService extends BaseService {
public Page<PortalApprovalUI> selectList(Pageable pageable, PortalApprovalUISearch portalApprovalUISearch) {
Page<Approval> approval = approvalService.findAll(pageable, portalApprovalUISearch);
return approval.map(entity -> getDetailWithMaskOption(entity.getId(), true));
return approval.map(entity -> getDetailWithMaskOption(entity.getId(), false));
}
/**
* 마스킹된 상세 정보 조회
*/
public PortalApprovalUI selectDetail(String id) {
return getDetailWithMaskOption(id, true);
return getDetailWithMaskOption(id, false);
}
/**