Browse Source

fix(style): fixed breadcrumb table info style (#18310)

Priscila Oliveira 4 years ago
parent
commit
1fd50d2cb3

+ 1 - 1
src/sentry/static/sentry/app/components/events/interfaces/breadcrumbs/httpRenderer.tsx

@@ -25,7 +25,7 @@ const HttpRenderer = ({breadcrumb}: Props) => {
           {url}
           {url}
         </ExternalLink>
         </ExternalLink>
       ) : (
       ) : (
-        <em>{url}</em>
+        <span>{url}</span>
       );
       );
     }
     }