From 723c4723f6bcdf67a5fe798bd7e06998d8338a71 Mon Sep 17 00:00:00 2001 From: JooWangi Date: Mon, 15 Jun 2026 15:01:46 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B0=9C=EC=9D=B8PC=20=EC=9E=90?= =?UTF-8?q?=EC=82=B0=20=EA=B4=80=EB=A6=AC(PC)=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=EC=97=90=EC=84=9C=20'=EC=9E=90=EC=82=B0=20=ED=98=84?= =?UTF-8?q?=ED=99=A9'=20=ED=86=A0=EA=B8=80=20=ED=83=AD=20=EC=88=A8?= =?UTF-8?q?=EA=B9=80=EC=B2=98=EB=A6=AC=20=EB=B0=8F=20=EC=9E=90=EC=82=B0=20?= =?UTF-8?q?=EB=AA=A9=EB=A1=9D=EC=9C=BC=EB=A1=9C=20=EA=B8=B0=EB=B3=B8=20?= =?UTF-8?q?=EA=B3=A0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/List/ListFactory.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/List/ListFactory.ts b/src/views/List/ListFactory.ts index 7b93566..ae7a26b 100644 --- a/src/views/List/ListFactory.ts +++ b/src/views/List/ListFactory.ts @@ -177,9 +177,9 @@ export function createListView(container: HTMLElement, config: ListViewConfig) { } let currentFilters: any = (state as any).listFilters[filterKey]; - // 서버 및 PC 탭이 아닐 경우 '자산 현황' 뷰 진입 방지 및 강제 'asset' 모드 - const isServerOrPc = config.title === '서버' || config.title === 'PC'; - if (!isServerOrPc) { + // 서버 탭이 아닐 경우 '자산 현황' 뷰 진입 방지 및 강제 'asset' 모드 (PC 탭은 자산 현황 숨김) + const isServer = config.title === '서버'; + if (!isServer) { (state as any).currentViewMode = 'asset'; } else if (!(state as any).currentViewMode) { (state as any).currentViewMode = 'system'; @@ -192,7 +192,7 @@ export function createListView(container: HTMLElement, config: ListViewConfig) { const showPcFlowBtn = config.title === 'PC'; toggleWrapper.innerHTML = `
-
+