-
Notifications
You must be signed in to change notification settings - Fork 5
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
[FE] 지출 내역 추가 시 금액에 숫자 외 다른 문자 입력 가능한 버그 수정 #491
Conversation
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.
'' 때문에 일어난 문제였다니;;; 수정 감사합니다
@@ -22,7 +22,7 @@ const SetEventPasswordPage = () => { | |||
labelText="비밀번호" | |||
errorText={errorMessage} | |||
value={password} | |||
type="secret" | |||
type="number" |
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.
혹시 여기 type이 number로 바뀐 이유가 있을까요?
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.
제가 놓친 버그를 해결해주셔서 너무나도 무한 감사합니다..ㅜ
@@ -108,7 +108,7 @@ const BillStepItem: React.FC<BillStepItemProps> = ({ | |||
<EditableItem.Input | |||
placeholder="0" | |||
type="number" | |||
value={billInput.price || ''} | |||
value={billInput.price ?? null} |
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.
와 이거 제가 어제 수정하면서 고민했던 건데!
빈 문자열이 아니라 null로 줘도 될것 같은데? 딱 이 생각을 했었거든요..
그런데 일단 빈 문자열로도 잘 동작하길래 슥- 생각만 하고 넘어갔었는데.. 이런 안일함이 버그를 발생시켰다니.. 대-충격;;;
버그 해결해줘서 너무 고마워요 토다리 ㅜㅜ
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.
이렇게 버그 픽스 내역을 피알로 남겨준 덕분에 나중에 유용하게 쓸 것 같아요...! 너무 고마워요잉 🤩
issue
구현 목적
2024-08-22.6.33.15.mov
구현 사항
type=number
로 제한되어 있는 input에 초기값으로''
가 주어지다 보니 이 부분에서 문자열을 받으면서 버그가 발생함''
이 아닌null
을 줌으로써 해결함