mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 02:24:18 +00:00
Merge pull request #2842 from mitmproxy/web-timings
[web] fix timing display for keepalive connections
This commit is contained in:
commit
326bb546da
@ -119,7 +119,7 @@ export function TimeColumn({ flow }) {
|
|||||||
return (
|
return (
|
||||||
<td className="col-time">
|
<td className="col-time">
|
||||||
{flow.response ? (
|
{flow.response ? (
|
||||||
formatTimeDelta(1000 * (flow.response.timestamp_end - flow.server_conn.timestamp_start))
|
formatTimeDelta(1000 * (flow.response.timestamp_end - flow.request.timestamp_start))
|
||||||
) : (
|
) : (
|
||||||
'...'
|
'...'
|
||||||
)}
|
)}
|
||||||
|
Loading…
Reference in New Issue
Block a user