refactor: 임시 파일 정리 및 코드 클린업
제거된 파일들: - migrate-data.html - 데이터 마이그레이션 도구 (완료됨) - debug-data.html - 디버깅 도구 (완료됨) - fix-api-data.html - API 데이터 수정 도구 (완료됨) - fix-project-id.html - 프로젝트 ID 수정 도구 (완료됨) - create-project-api.html - 프로젝트 API 생성 도구 (완료됨) - chart.html - 구 버전 차트 페이지 (사용 안함) - 루트 디렉토리 중복 파일들 (index.html, daily-work.html) 코드 정리: - 디버깅용 console.log 제거 - 이미지 압축 로그 정리 - 필터링 디버깅 로그 정리 서비스 배포 준비를 위한 클린업 작업
This commit is contained in:
@@ -317,8 +317,6 @@
|
||||
}
|
||||
|
||||
function filterIssues() {
|
||||
console.log('필터링 시작 - 전체 이슈:', issues.length);
|
||||
|
||||
// 필터 값 가져오기
|
||||
const selectedProjectId = document.getElementById('projectFilter').value;
|
||||
const reviewStatusFilter = document.getElementById('reviewStatusFilter').value;
|
||||
@@ -332,7 +330,6 @@
|
||||
const issueProjectId = issue.project_id || issue.projectId;
|
||||
return issueProjectId && (issueProjectId == selectedProjectId || issueProjectId.toString() === selectedProjectId.toString());
|
||||
});
|
||||
console.log('프로젝트 필터 후:', filteredIssues.length);
|
||||
}
|
||||
|
||||
// 검토 상태 필터 적용
|
||||
@@ -341,13 +338,11 @@
|
||||
const isCompleted = isReviewCompleted(issue);
|
||||
return reviewStatusFilter === 'completed' ? isCompleted : !isCompleted;
|
||||
});
|
||||
console.log('검토 상태 필터 후:', filteredIssues.length);
|
||||
}
|
||||
|
||||
// 날짜 필터 적용
|
||||
if (dateFilter) {
|
||||
filteredIssues = filterByDate(filteredIssues, dateFilter);
|
||||
console.log('날짜 필터 후:', filteredIssues.length);
|
||||
}
|
||||
|
||||
// 전역 변수에 필터링된 결과 저장
|
||||
|
||||
Reference in New Issue
Block a user