fix: 직무별 기준 사양 대비 부족 사양(0.6배 미만) 및 오버스펙(1.5배 초과) 판정 수치 비율 임계치 조정

This commit is contained in:
2026-06-15 14:51:09 +09:00
parent 6118141f6e
commit fa87f383e2
2 changed files with 4 additions and 4 deletions

View File

@@ -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) {