We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
어떤 문제가 발생했는지 명확하고 간결하게 설명해주세요.
책의 시작 페이지의 앞자리가 마지막 페이지보다 큰 경우에 시작 페이지가 더 크다는 경고 메시지가 뜬다.
버그를 재현하는 단계를 설명해주세요.
정상적인 동작을 설명해주세요.
시작 페이지와 마지막 페이지를 문자열이 아닌 숫자로 비교하여, 올바르게 크기를 판단해야 합니다.
가능하다면 스크린샷을 첨부해주세요.
해당 버그와 관련된 추가 정보를 적어주세요.
현재 페이지를 입력받는 텍스트 필드가 String 타입으로 처리되고 있어, 비교 과정에서 문자열 비교가 발생하여 문제가 생겼습니다. 이로 인해 숫자 전체를 기준으로 비교하지 않고 첫 자리만 비교하는 현상이 나타납니다.
The text was updated successfully, but these errors were encountered:
fix: #140 Change text field input type to Int
ef89785
- 책의 시작 페이지와 마지막 페이지를 Int 타입으로 비교하기 위해 텍스트 필드의 Input 타입을 Int로 변경
Merge pull request #141 from DeveloperAcademy-POSTECH/horfix/140-page…
d0854d7
…-calculate-string-type-issue [#140] 책 페이지를 입력 받는 텍스트 필드 인풋 타입 변경
zaehorang
Successfully merging a pull request may close this issue.
Description
책의 시작 페이지의 앞자리가 마지막 페이지보다 큰 경우에 시작 페이지가 더 크다는 경고 메시지가 뜬다.
To Reproduce
Expected behavior
시작 페이지와 마지막 페이지를 문자열이 아닌 숫자로 비교하여, 올바르게 크기를 판단해야 합니다.
Screenshots
Smartphone (please complete the following information)
Additional context
현재 페이지를 입력받는 텍스트 필드가 String 타입으로 처리되고 있어, 비교 과정에서 문자열 비교가 발생하여 문제가 생겼습니다.
이로 인해 숫자 전체를 기준으로 비교하지 않고 첫 자리만 비교하는 현상이 나타납니다.
The text was updated successfully, but these errors were encountered: