Skip to content

Commit 66c50d4

Browse files
author
Julien Bouquillon
authored
fix(report): hide 404 when empty (#57)
1 parent 34fd800 commit 66c50d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

report/www/src/components/Url.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ const Url: React.FC<UrlDetailProps> = ({ url, report }) => {
193193
<Anchor id="404" />
194194
<Report404 data={report['404']}/>
195195
</>
196-
)}
196+
) || null}
197197
</>
198198
);
199199
};

0 commit comments

Comments
 (0)