Skip to content

Commit

Permalink
fix: 변경된 형식에 맞게 에픽 페이지 구조 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
surinkwon committed Aug 13, 2024
1 parent 9c20251 commit 9b0ba24
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions frontend/src/pages/backlog/EpicPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,15 @@ const EpicPage = () => {
: 0;

return (
<StoryBlock
{...{ id, title, point, status }}
epic={{ id: epicId, name, color, rankValue }}
progress={progress}
taskExist={taskList.length > 0}
lastTaskRankValue={
taskList.length
? taskList[taskList.length - 1].rankValue
: undefined
}
>
<>
<StoryBlock
{...{ id, title, point, status }}
epic={{ id: epicId, name, color, rankValue }}
progress={progress}
taskExist={taskList.length > 0}
/>
{...taskList.map((task) => <TaskBlock {...task} />)}
</StoryBlock>
</>
);
})}
{showDetail ? (
Expand Down

0 comments on commit 9b0ba24

Please sign in to comment.