-
Notifications
You must be signed in to change notification settings - Fork 0
아이템 레벨 필터를 옵셔널하게 동작하도록 수정합니다. #282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pinocchio22
merged 5 commits into
dev
from
fix/#281-itemFilter-levelRange-default-value
Feb 24, 2026
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
bfa112e
Merge pull request #279 from Team-Maple/dev
pinocchio22 bc22fb2
fix: level range nil값 허용으로 수정
dongglehada c0347c8
fix: 파싱 로직 옵셔널 대응
dongglehada 2eff9c1
fix: 필터 재진입시 level 초기화 문제 해결
dongglehada e1734e1
fix: 초기화 버튼 클릭시 레벨 초기화 되지 않는 문제 해결
dongglehada File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lowerValue와upperValue의 setter 로직이nil값을 제대로 처리하지 못하고 있습니다.newValue ?? minimumValue와 같이 nil-coalescing 연산자를 사용하면newValue가nil일 때minimumValue또는maximumValue로 대체되어BehaviorRelay에nil이 저장되지 않습니다. 이로 인해 슬라이더의 상태가nil이 될 수 없게 되어, 레벨 필터를 선택적으로 만들려는 원래 의도와 다르게 동작할 수 있습니다.newValue가nil일 때도nil이BehaviorRelay에 전달되도록 setter를 수정해야 합니다.