diff options
Diffstat (limited to 'components/ProjectSelector.tsx')
| -rw-r--r-- | components/ProjectSelector.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/components/ProjectSelector.tsx b/components/ProjectSelector.tsx index 50d5b9d5..652bf77b 100644 --- a/components/ProjectSelector.tsx +++ b/components/ProjectSelector.tsx @@ -90,7 +90,11 @@ export function ProjectSelector({ placeholder="프로젝트 코드/이름 검색..." onValueChange={setSearchTerm} /> - <CommandList className="max-h-[300px]"> + <CommandList className="max-h-[300px]" onWheel={(e) => { + e.stopPropagation(); // 이벤트 전파 차단 + const target = e.currentTarget; + target.scrollTop += e.deltaY; // 직접 스크롤 처리 + }}> <CommandEmpty>검색 결과가 없습니다</CommandEmpty> {isLoading ? ( <div className="py-6 text-center text-sm">로딩 중...</div> |
