From efde8ae359293da62500cd5545cd372c32ad38a4 Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Mon, 23 Aug 2021 02:59:11 +0300 Subject: [PATCH] Fix the status code in the summary section --- ui/src/components/HarEntryDetailed.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/components/HarEntryDetailed.tsx b/ui/src/components/HarEntryDetailed.tsx index 99d86ba8b..f12e8ebb3 100644 --- a/ui/src/components/HarEntryDetailed.tsx +++ b/ui/src/components/HarEntryDetailed.tsx @@ -57,8 +57,8 @@ const HarEntrySummary: React.FC = ({har}) => { const {response, request} = JSON.parse(entries[0].entry); return
- {response?.payload && "status" in response.payload &&
- + {response?.payload.details && "status" in response.payload.details &&
+
}