Skip to content

Commit

Permalink
Add tooltip when hovering over trace in opened traces view
Browse files Browse the repository at this point in the history
Fixes #897

Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
bhufmann committed Dec 23, 2022
1 parent 0e40ac1 commit 9059b5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export class ReactOpenTracesWidget extends React.Component<ReactOpenTracesWidget
return (
<div className='trace-element-path-container'>
{tracePaths.map(trace => (
<div className='trace-element-path child-element' id={trace.UUID} key={trace.UUID}>
<div className='trace-element-path child-element' id={trace.UUID} key={trace.UUID} title={trace.path}>
{` > ${trace.name}`}
</div>
))}
Expand Down

0 comments on commit 9059b5e

Please sign in to comment.