Skip to content

Commit 1959671

Browse files
author
Brian Vaughn
authored
Add tooltip to interaction name in DevTools Profiler sidebar (#17689)
1 parent ccc6100 commit 1959671

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/react-devtools-shared/src/devtools/views/Profiler/SidebarInteractions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ export default function SidebarInteractions(_: Props) {
8686
return (
8787
<Fragment>
8888
<div className={styles.Toolbar}>
89-
<div className={styles.Name}>{interaction.name}</div>
89+
<div className={styles.Name} title={interaction.name}>
90+
{interaction.name}
91+
</div>
9092
</div>
9193
<div className={styles.Content}>
9294
<div className={styles.Commits}>Commits:</div>

0 commit comments

Comments
 (0)