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] bug: getAllKanbanData에서 getColums와 getKanbanCards의 return 값의 데이터가 맞지 않을 때 발생하는 문제 #217

Open
2yunseong opened this issue Sep 18, 2024 · 1 comment
Assignees
Labels
bug 버그 리포트, 버그 제보, 정상적인 기능 수행을 하지 못하는 경우

Comments

@2yunseong
Copy link
Collaborator

2yunseong commented Sep 18, 2024

As-Is

  • getColums (GET v1/boards/navigations/{navigation-id}/columns)
    image

  • getKanbanCards (GET v1/navigations/{navigation-id}/boards)
    image

getColums return 값 중 "테스트 칸반"에 대한 내용이 getKanbanCards return 값에 없어서 문제가 발생하였습니다.

이로 인한 문제

const startColumnCardData = cardsData
  .filter((card) => card.columnId === column.columnsId)
  .filter((card) => card.cardType === "INVISIBLE");

startColumnCardData에 빈 배열이 들어가게 된다.

To-Be

  • startColumnCardData 에 빈 배열이 들어가지 않게 예외 처리를 해야 함.
@2yunseong 2yunseong added the bug 버그 리포트, 버그 제보, 정상적인 기능 수행을 하지 못하는 경우 label Sep 18, 2024
@2yunseong 2yunseong self-assigned this Sep 18, 2024
@smb0123 smb0123 changed the title [FE] bug: nextBoardId가 null일 시 에러가 발생하는 문제 [FE] bug: getAllKanbanData에서 getColums와 getKanbanCards의 return 값의 데이터가 맞지 않을 때 발생하는 문제 Sep 19, 2024
@2yunseong
Copy link
Collaborator Author

Screenshot 2024-09-19 at 13 28 33

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 버그 리포트, 버그 제보, 정상적인 기능 수행을 하지 못하는 경우
Projects
None yet
Development

No branches or pull requests

1 participant