[251031] fix: VoiceInputOvelay Input Click to SearchInputOverlay

🕐 커밋 시간: 2025. 10. 31. 10:56:01

📊 변경 통계:
  • 총 파일: 1개
  • 추가: +7줄
  • 삭제: -1줄

📝 수정된 파일:
  ~ com.twin.app.shoptime/src/views/SearchPanel/VoiceInputOverlay/VoiceInputOverlay.jsx
This commit is contained in:
2025-10-31 10:56:02 +09:00
parent 973a1da459
commit 92b57ad3b7

View File

@@ -1974,7 +1974,7 @@ const VoiceInputOverlay = ({
inputFocused && css.inputFieldWrapperActive
)}
>
{/* ⚠️ [251031] onMouseDown 제거됨 - 마우스 클릭 시 프리징 발생 현상 제거 */}
{/* [251031] onMouseDown 추가 - SearchPanel과 동일하게 마우스 클릭 처리 */}
<TInputSimple
className={css.inputBox}
kind={KINDS.withIcon}
@@ -1987,6 +1987,12 @@ const VoiceInputOverlay = ({
}
inputFocus={inputFocused}
onKeyDown={handleInputKeyDown}
onMouseDown={() => {
console.log('[InputSimple] 마우스 클릭 감지');
if (onTransitionToSearchInput) {
onTransitionToSearchInput();
}
}}
onFocus={handleInputFocus}
onBlur={handleInputBlur}
spotlightId={INPUT_SPOTLIGHT_ID}