change(ui) - network replace 0b with x

This commit is contained in:
Shekar Siri 2022-11-17 18:12:49 +01:00
parent 2746781d9b
commit 4e96bda49b

View file

@ -102,7 +102,7 @@ function renderSize(r: any) {
if (r.responseBodySize) return formatBytes(r.responseBodySize);
let triggerText;
let content;
if (r.decodedBodySize == null) {
if (r.decodedBodySize == null || r.decodedBodySize === 0) {
triggerText = 'x';
content = 'Not captured';
} else {