We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c20251 commit 9b0ba24Copy full SHA for 9b0ba24
frontend/src/pages/backlog/EpicPage.tsx
@@ -40,19 +40,15 @@ const EpicPage = () => {
40
: 0;
41
42
return (
43
- <StoryBlock
44
- {...{ id, title, point, status }}
45
- epic={{ id: epicId, name, color, rankValue }}
46
- progress={progress}
47
- taskExist={taskList.length > 0}
48
- lastTaskRankValue={
49
- taskList.length
50
- ? taskList[taskList.length - 1].rankValue
51
- : undefined
52
- }
53
- >
+ <>
+ <StoryBlock
+ {...{ id, title, point, status }}
+ epic={{ id: epicId, name, color, rankValue }}
+ progress={progress}
+ taskExist={taskList.length > 0}
+ />
54
{...taskList.map((task) => <TaskBlock {...task} />)}
55
- </StoryBlock>
+ </>
56
);
57
})}
58
{showDetail ? (
0 commit comments