feature/screen-management #202
Loading…
Reference in New Issue
No description provided.
Delete Branch "feature/screen-management"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
문제: - 분할 패널에서 필터 입력 시 검색이 제대로 작동하지 않음 - 백엔드가 {value: '전자', operator: 'contains'} 형태를 처리하지 못함 원인: - buildAdvancedSearchCondition이 필터 객체의 value 속성을 추출하지 않음 - 객체를 직접 문자열로 변환하여 '[object Object]'로 검색됨 해결: 1. tableManagementService.buildAdvancedSearchCondition 수정: - {value, operator} 형태의 필터 객체 감지 - actualValue 추출 및 operator 처리 - 모든 웹타입 케이스에 actualValue 전달 2. 프론트엔드 디버깅 로그 제거: - SplitPanelLayoutComponent의 console.log 제거 - 필터, 컬럼 가시성, API 호출 로그 정리 테스트 필요: - 분할 패널에서 필터 입력 → 정상 검색 확인 - 텍스트, 날짜, 숫자, 코드 타입 필터 동작 확인