fix(tooltip): description prop deprecated, use content instead (#2806)

This commit is contained in:
virtuacoplenny
2018-04-16 10:21:01 -07:00
committed by bbaldino
parent 6586be9a8e
commit 41e1c3a2e2
3 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ class ToolbarButton extends AbstractToolbarButton {
onClick = { this.props.onClick }>
{ this.props.tooltip
? <Tooltip
description = { this.props.tooltip }
content = { this.props.tooltip }
position = { this.props.tooltipPosition }>
{ children }
</Tooltip>