@@ -783,7 +786,12 @@
function createCompletedRow(issue, project) {
return `
- | ${issue.project_sequence_no || '-'} |
+
+
+ No.${issue.project_sequence_no || '-'}
+
+
+ |
${project ? project.project_name : '-'} |
${getStatusIcon(issue.final_description || issue.description)} |
${getStatusIcon(getCategoryText(issue.final_category || issue.category))} |
@@ -824,7 +832,12 @@
if (currentTab === 'in_progress') {
// 진행 중 탭 헤더
return `
- No. |
+
+
+ No.
+
+
+ |
프로젝트 |
내용 |
원인 |
@@ -839,7 +852,12 @@
} else {
// 완료됨 탭 헤더
return `
- No. |
+
+
+ No.
+
+
+ |
프로젝트 |
내용 |
원인 |
@@ -1108,7 +1126,14 @@
const project = projects.find(p => p.id === issue.project_id);
// 모달 제목 설정
- document.getElementById('modalTitle').textContent = `부적합 No.${issue.project_sequence_no} 상세 정보`;
+ document.getElementById('modalTitle').innerHTML = `
+
+ 부적합
+ No.${issue.project_sequence_no || '-'}
+
+ 상세 정보
+
+ `;
// 모달 내용 생성
const modalContent = document.getElementById('modalContent');