This commit is contained in:
Archer
2024-11-12 16:02:53 +08:00
committed by archer
parent 5e273341dd
commit cdce94a202
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ const RenderResponseDetail = () => {
<>{t('chat:in_progress')}</>
) : (
<Box flex={'1 0 0'} h={'100%'} overflow={'auto'}>
<ResponseBox useMobile={true} response={responseData} showDetail={true} />
<ResponseBox useMobile={true} response={responseData} />
</Box>
);
};

View File

@@ -755,7 +755,7 @@ const NodeDebugResponse = React.memo(function NodeDebugResponse({
{debugResult.message}
</Box>
)}
{response && <WholeResponseContent activeModule={response} showDetail />}
{response && <WholeResponseContent activeModule={response} />}
</Box>
)}
</Card>