Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is this PR? 🔍
Changes 📝
onBlur
이벤트를 추가하여 바깥 클릭 시 드롭다운이 닫히도록 구현했었습니다. 그 상태로 성별 선택을 위해li
아이템에onClick
이벤트를 실행하려 하니 성별 선택이 되지 않은 채로 드롭다운 메뉴가 닫히는 현상이 발생했습니다. 그 이유가 이벤트 핸들러의 작동 순서 때문이라는 것을 알게되었습니다.onBlur -> onClick
순으로 이벤트 핸들러가 작동하기 때문에onClick
이벤트가 실행되지 않고 드롭다운이 닫히는 것이었습니다! 따라서onBlur
의 작동 순서보다 앞서는onMouseDown
이벤트를 사용해 해결했습니다.✔️ Please check if the PR fulfills these requirements
develop
branch unconditionally?main
?yarn lint