We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ca6615 commit 684cc4fCopy full SHA for 684cc4f
src/components/Tooltip/Tooltip.jsx
@@ -113,7 +113,8 @@ export default class Tooltip extends React.PureComponent {
113
children,
114
getContainer,
115
theme,
116
- paddingSize
+ paddingSize,
117
+ tip
118
} = this.props;
119
120
if (!children) {
@@ -127,7 +128,7 @@ export default class Tooltip extends React.PureComponent {
127
128
const dialogProps = {
129
...this.props,
130
startingEdge: justify,
- tooltip: true,
131
+ tooltip: tip,
132
content,
133
getContainer: getContainer || this.getContainer,
134
moveBy,
@@ -153,5 +154,6 @@ Tooltip.defaultProps = {
153
154
animationType: "expand",
155
withoutDialog: false,
156
containerSelector: "#tooltips-container",
- immediateShowDelay: null
157
+ immediateShowDelay: null,
158
+ tip: true
159
};
0 commit comments