Skip to content

Commit

Permalink
Refactor SpanViewer component to simplify conditional rendering of span
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Apr 19, 2024
1 parent 48a5895 commit c4eb6cd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Dashboard/src/Components/Span/SpanViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ const SpanViewer: FunctionComponent<ComponentProps> = (

return (
<div id={props.id}>
{span && (
<></>
)}
{span && <></>}
<LogsViewer
isLoading={isLoading}
onFilterChanged={() => {}}
Expand Down

0 comments on commit c4eb6cd

Please sign in to comment.