Skip to content

Commit 48384b8

Browse files
authored
Merge pull request #9 from yWorks/dev
Fix tooltip playground
2 parents 2cb2d0d + f2e25e0 commit 48384b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/features/Tooltips.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You can also specify custom React components to render the tooltips according to
3737
text = data.name!
3838
} else if ('source' in data) {
3939
// orgchart connection tooltip
40-
text = \`${data.source.name} → ${data.target.name}\`
40+
text = data.source.name + " → " + data.target.name
4141
}
4242
4343
return (

0 commit comments

Comments
 (0)