Skip to content

Commit

Permalink
PR comment - Add "SpanID:" label
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffon committed Aug 22, 2017
1 parent 83b28d5 commit 7204684
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,21 @@ THE SOFTWARE.
*/

.SpanDetail--debugInfo {
color: #888;
display: block;
letter-spacing: 0.25px;
margin: 0.5em 0 -0.75em;
text-align: right;
}

.SpanDetail--debugLabel::before {
color: #bbb;
content: attr(data-label);
}

.SpanDetail--debugValue {
color: #888;
}

.SpanDetail--debugValue:hover {
color: #333;
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ export default function SpanDetail(props) {
{span.logs && span.logs.length > 0 && <AccordianLogs logs={span.logs} timestamp={trace.startTime} />}

<small className="SpanDetail--debugInfo">
{span.spanID}
<span className="SpanDetail--debugLabel" data-label="SpanID:" />{' '}
<span className="SpanDetail--debugValue">{span.spanID}</span>
</small>
</div>
</div>
Expand Down

0 comments on commit 7204684

Please sign in to comment.