feat: 동적 디스크 확장 기능 및 하드웨어 카테고리 필터링 고도화

This commit is contained in:
2026-06-09 16:29:54 +09:00
parent 4b408b0640
commit 2b9c965c91
9 changed files with 275 additions and 125 deletions

View File

@@ -121,7 +121,7 @@ function initApp() {
if (cat === 'hw') {
openHwModal({ id: newId, asset_code: '', category: tab } as any, 'add');
} else if (cat === 'sw') {
const swType = tab === '외부' ? '외부SW' : (tab === '내부' ? '내부SW' : '외부SW');
const swType = tab === '외부SW' ? '외부SW' : (tab === '내부SW' ? '내부SW' : '외부SW');
openSwModal({ id: newId, asset_type: swType } as any, 'add');
} else if (cat === 'ops') {
if (tab === '도메인') openDomainModal(null);