wujingjing
2024-12-18 260405b517ccdbafce41b8980554fdf974caec02
src/components/chat/hooks/useScrollLoad.ts
@@ -108,11 +108,11 @@
               : {
                     historyId: item.answer?.history_id,
                     role: RoleEnum.assistant,
                     content: parseAnswerContent(item.answer),
                     content: parseAnswerContent(item?.answer),
                     state: item.answer_state,
                     sectionAId: mapUser?.section_a_id,
                     createTime: answerTime,
                     stepList: convertProcessToStep(item?.answer?.exec_process),
                     stepList: convertProcessToStep(item?.answer?.reports?.[0]?.exec_process),
                     stepIsShow: false,
                     isStopMsg: false,
@@ -153,7 +153,7 @@
         historyId: msgValue.history_id,
         role: RoleEnum.assistant,
         content: parseAnswerContent(msgValue),
         stepList: convertProcessToStep(msgValue.exec_process),
         stepList: convertProcessToStep(msgValue?.reports?.[0]?.exec_process),
         stepIsShow: false,
         isStopMsg: false,