기관, 앱 승인시 팝업 닫기 오류 수정
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user