diff --git a/src/views/Dashboard/HwDashboard.ts b/src/views/Dashboard/HwDashboard.ts
index 45507d0..d18856c 100644
--- a/src/views/Dashboard/HwDashboard.ts
+++ b/src/views/Dashboard/HwDashboard.ts
@@ -125,7 +125,7 @@ export function renderHwDashboard(container: HTMLElement) {
보유량 |
운영중 |
재고 |
- 부족분 |
+ 구매 필요 |
@@ -416,7 +416,7 @@ function updateDashboardData(pcs: any[], selectedDept: string) {
${renderMatrixRow('premium', '최상급 PC (85점 이상)', '#11302B')}
${renderMatrixRow('high', '상급 PC (70점 ~ 85점)', '#1E8E7C')}
${renderMatrixRow('normal', '중급 PC (40점 ~ 70점)', '#10B981')}
- ${renderMatrixRow('entry', '보급 PC (20점 ~ 40점 & Win11 가능)', '#F59E0B')}
+ ${renderMatrixRow('entry', '보급 PC (20점 ~ 40점)', '#F59E0B')}
${renderMatrixRow('replace', '교체 대상 PC (20점 미만 또는 Win11 불가)', '#EF4444')}
| 합계 (Total) |
@@ -449,7 +449,7 @@ function updateDashboardData(pcs: any[], selectedDept: string) {
if (t === 'total') return '보유';
if (t === 'active') return '운영중';
if (t === 'stock') return '재고';
- if (t === 'under') return '부족 (사양 부족)';
+ if (t === 'under') return '구매 필요';
return '';
};