style: 진행 상태 라벨 '미착수'를 '대기'로 변경
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -36,7 +36,7 @@ export const CHECKLIST_CATEGORIES: ChecklistCategory[] = [
|
||||
'부가',
|
||||
]
|
||||
|
||||
/** 작업자 진행 상태(자가보고) — 미착수/진행중/완료 */
|
||||
/** 작업자 진행 상태(자가보고) — 대기/진행중/완료 */
|
||||
export type ChecklistWorkStatus = 'todo' | 'doing' | 'done'
|
||||
|
||||
/** 체크리스트 항목 */
|
||||
|
||||
@@ -303,7 +303,7 @@ const isAssignee = computed(
|
||||
* 중간 점검(체크포인트) — 작업자가 점검일 당일에 보고서로 전송, 지시자는 기록 열람
|
||||
* ============================================================ */
|
||||
const WORK_STATUS_LABEL: Record<ChecklistWorkStatus, string> = {
|
||||
todo: '미착수',
|
||||
todo: '대기',
|
||||
doing: '진행 중',
|
||||
done: '완료',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user