diff --git a/js/lib/components/Badge.js b/js/lib/components/Badge.js index 142a1ef0a..8da355982 100644 --- a/js/lib/components/Badge.js +++ b/js/lib/components/Badge.js @@ -38,6 +38,6 @@ export default class Badge extends Component { config(isInitialized) { if (isInitialized) return; - if (this.props.label) this.$().tooltip(); + if (this.props.label) this.$().tooltip({container: 'body'}); } }