Skip to content
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

Merged
merged 1 commit into from
Aug 22, 2024

Conversation

Todari
Copy link
Contributor

@Todari Todari commented Aug 22, 2024

issue

구현 목적

  • 기존에 지출내역의 금액 부분에 문자가 입력되는 버그 발생
2024-08-22.6.33.15.mov

구현 사항

  • type=number로 제한되어 있는 input에 초기값으로 ''가 주어지다 보니 이 부분에서 문자열을 받으면서 버그가 발생함
  • value 초기값을 ''이 아닌 null을 줌으로써 해결함

@Todari Todari added 🖥️ FE Frontend 🚨 bug bug labels Aug 22, 2024
@Todari Todari added this to the lev3 milestone Aug 22, 2024
@Todari Todari requested review from pakxe, soi-ha and jinhokim98 August 22, 2024 09:34
@Todari Todari self-assigned this Aug 22, 2024
Copy link
Contributor

@jinhokim98 jinhokim98 left a 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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

혹시 여기 type이 number로 바뀐 이유가 있을까요?

Copy link
Contributor

@soi-ha soi-ha left a 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}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

와 이거 제가 어제 수정하면서 고민했던 건데!
빈 문자열이 아니라 null로 줘도 될것 같은데? 딱 이 생각을 했었거든요..
그런데 일단 빈 문자열로도 잘 동작하길래 슥- 생각만 하고 넘어갔었는데.. 이런 안일함이 버그를 발생시켰다니.. 대-충격;;;

버그 해결해줘서 너무 고마워요 토다리 ㅜㅜ

Copy link
Contributor

@pakxe pakxe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이렇게 버그 픽스 내역을 피알로 남겨준 덕분에 나중에 유용하게 쓸 것 같아요...! 너무 고마워요잉 🤩

@pakxe pakxe merged commit 3964287 into fe-dev Aug 22, 2024
1 check passed
@pakxe pakxe deleted the feature/#490 branch August 22, 2024 15:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: ✅ Done
Development

Successfully merging this pull request may close these issues.

[FE] 지출 내역 추가 시 금액에 숫자 외 다른 문자 입력 가능한 버그 수정
4 participants