liuxiran commented on a change in pull request #1779: URL: https://github.com/apache/apisix-dashboard/pull/1779#discussion_r615403679
########## File path: web/src/pages/Route/components/DebugViews/DebugDrawView.tsx ########## @@ -229,8 +233,23 @@ const DebugDrawView: React.FC<RouteModule.DebugDrawProps> = (props) => { }, bodyFormData) .then((req) => { setLoading(false); - setResponseBody(JSON.stringify(req.data.data, null, 2)); - setResponseHeader(JSON.stringify(req.data.header, null, 2)); + const resp: RouteModule.debugResponse= req.data; + if (typeof (resp.data) !== 'string') { Review comment: got it, thanks for your interpretation, just cc @Jaycean to take a look, this part may need to be optimized in a new pr. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org