From 833ea860ebcae3e77f50fe9f971acfd01ce37793 Mon Sep 17 00:00:00 2001 From: surinkwon Date: Sun, 4 Aug 2024 21:34:40 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=97=90=ED=94=BD=20=EB=A6=AC=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=EB=A5=BC=20=EC=8A=A4=ED=86=A0=EB=A6=AC=20=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=EB=A1=9C=20=EB=B3=80=EA=B2=BD=ED=95=A0=20?= =?UTF-8?q?=EB=95=8C=20rankValue=EB=A5=BC=20=EB=84=98=EA=B2=A8=EC=A3=BC?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EC=95=84=20=EC=83=9D=EA=B8=B0=EB=8A=94=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/utils/changeEpicListToStoryList.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/utils/changeEpicListToStoryList.ts b/frontend/src/utils/changeEpicListToStoryList.ts index b9f0fa1..e222bb0 100644 --- a/frontend/src/utils/changeEpicListToStoryList.ts +++ b/frontend/src/utils/changeEpicListToStoryList.ts @@ -3,9 +3,9 @@ import { EpicDTO } from "../types/DTO/backlogDTO"; const changeEpicListToStoryList = (epicList: EpicDTO[]) => { const newStoryList: UnfinishedStory[] = []; - epicList.forEach(({ id, name, color, storyList }) => { + epicList.forEach(({ id, name, color, rankValue, storyList }) => { storyList.forEach((story) => { - const newStory = { ...story, epic: { id, name, color } }; + const newStory = { ...story, epic: { id, name, color, rankValue } }; if (!newStory.taskList) { newStory.taskList = []; }