EENE Dashboard upload to Gitea

This commit is contained in:
EENE Dashboard
2026-06-18 12:05:08 +09:00
parent 29ba4867bf
commit d3548cf7ff
74 changed files with 5455 additions and 1261 deletions

View File

@@ -261,10 +261,9 @@ function buildMilestones(p: HrProject): MappedTask['milestones'] {
return milestones;
}
function buildDetailContent(p: HrProject): string | null {
const content = p.progressStatus?.trim() || p.progressLog?.trim();
if (!content || content === '이슈사항' || content === '12') return null;
return content;
/** @deprecated progressStatus는 milestone·periodEntries로 이관 — TaskDetail(피드백)에 넣지 않음 */
function buildDetailContent(_p: HrProject): string | null {
return null;
}
export function mapHrProjectToTask(p: HrProject, quarter = '2026-Q2'): MappedTask {