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

스케줄 주소 키값 변경 대응 #305

Merged
merged 2 commits into from
Jun 17, 2024
Merged

Conversation

kikiyeom
Copy link
Member

@kikiyeom kikiyeom commented Jun 1, 2024

변경사항

placeName이 없는 경우에 대응하기 위한 서버 키값 변경 및 각 키의 용도 변경에 대한 대응

  • address(도로주소, 상세주소) -> roadAddress(도로주소)
  • placeName(장소명) -> detailAddress(장소명, 상세주소)

작업 유형

  • 리팩토링
  • 버그 수정

체크리스트

  • Merge 할 브랜치가 올바른가?
  • 코딩컨벤션을 준수하였는가?
  • 해당 PR과 관련없는 변경사항이 없는가? (만약 있다면 제목이나 변경사항에 기술하여 주세요.)
  • 실행시 console 창에 에러나 경고가 없는것을 확인하였는가? (개발에 필요하여 고의적으로 남겨둔것 제외)

Copy link

netlify bot commented Jun 1, 2024

Deploy Preview for affectionate-jones-aa31c6 ready!

Name Link
🔨 Latest commit 00cf270
🔍 Latest deploy log https://app.netlify.com/sites/affectionate-jones-aa31c6/deploys/665ac5c9d9a56800087e65c2
😎 Deploy Preview https://deploy-preview-305--affectionate-jones-aa31c6.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Member

@HaJunRyu HaJunRyu left a comment

Choose a reason for hiding this comment

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

👍

location.roadAddress === null
? location.detailAddress // ZOOM
: `${location.roadAddress}${
location.detailAddress ? `, ${location.detailAddress}` : ''
Copy link
Member

Choose a reason for hiding this comment

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

사소하긴한데 삼항연산자 중첩이라 약간 가독성 안좋은 느낌도 있는거 같아서 return 구문 전에 detailAddress 같은 변수명으로 삼항 연사자 한번 처리하고 여기선 값만 주입하면 좋을거 같다는 생각~! 근데 취향이라 공감 안되면 그냥 넘어가도 되고ㅎㅎ

@kikiyeom kikiyeom merged commit c4ca16e into develop Jun 17, 2024
5 checks passed
@kikiyeom kikiyeom deleted the feature/update-schedule branch June 17, 2024 13:21
@kikiyeom kikiyeom mentioned this pull request Jun 17, 2024
4 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants