From fa87f383e2b33dc44e5966bd714f06cc0bc0b51c Mon Sep 17 00:00:00 2001 From: JooWangi Date: Mon, 15 Jun 2026 14:51:09 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=A7=81=EB=AC=B4=EB=B3=84=20=EA=B8=B0?= =?UTF-8?q?=EC=A4=80=20=EC=82=AC=EC=96=91=20=EB=8C=80=EB=B9=84=20=EB=B6=80?= =?UTF-8?q?=EC=A1=B1=20=EC=82=AC=EC=96=91(0.6=EB=B0=B0=20=EB=AF=B8?= =?UTF-8?q?=EB=A7=8C)=20=EB=B0=8F=20=EC=98=A4=EB=B2=84=EC=8A=A4=ED=8E=99(1?= =?UTF-8?q?.5=EB=B0=B0=20=EC=B4=88=EA=B3=BC)=20=ED=8C=90=EC=A0=95=20?= =?UTF-8?q?=EC=88=98=EC=B9=98=20=EB=B9=84=EC=9C=A8=20=EC=9E=84=EA=B3=84?= =?UTF-8?q?=EC=B9=98=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Dashboard/HwDashboard.ts | 4 ++-- src/views/List/ListFactory.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/Dashboard/HwDashboard.ts b/src/views/Dashboard/HwDashboard.ts index 6b2c478..cde2cda 100644 --- a/src/views/Dashboard/HwDashboard.ts +++ b/src/views/Dashboard/HwDashboard.ts @@ -344,10 +344,10 @@ function updateDashboardData(pcs: any[], selectedDept: string) { let isUnder = false; if (standardScore > 0 && job !== '재고PC') { - if (score < standardScore) { + if (score < standardScore * 0.6) { isUnder = true; p._spec_status = '사양 부족'; - } else if (score > standardScore * 1.2 && !win11Incompatible) { + } else if (score > standardScore * 1.5 && !win11Incompatible) { p._spec_status = '오버스펙'; criticalList.push(p); overSpecCount++; diff --git a/src/views/List/ListFactory.ts b/src/views/List/ListFactory.ts index 7cf937a..7b93566 100644 --- a/src/views/List/ListFactory.ts +++ b/src/views/List/ListFactory.ts @@ -935,10 +935,10 @@ export function createListView(container: HTMLElement, config: ListViewConfig) { let isUnder = false; if (standardScore > 0) { - if (score < standardScore) { + if (score < standardScore * 0.6) { isUnder = true; pc['_spec_status'] = '사양 부족'; - } else if (score > standardScore * 1.2 && !win11Incompatible) { + } else if (score > standardScore * 1.5 && !win11Incompatible) { pc['_spec_status'] = '오버스펙'; criticalPcList.push(pc); } else if (win11Incompatible) {