aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-01-22 10:55:08 +0400
committerLibravatar GitHub <noreply@github.com>2018-01-22 10:55:08 +0400
commit3c870aecc1a4e440b06da507063fb84348fb5ad2 (patch)
tree4cedbb55dc4c92e38c496cba78df9e7790b8cd23 /src
parentfix property change due to mobx-react-form update (diff)
parentMerge pull request #584 from meetfranz/fix-service-tooltips-initialization (diff)
downloadferdium-app-3c870aecc1a4e440b06da507063fb84348fb5ad2.tar.gz
ferdium-app-3c870aecc1a4e440b06da507063fb84348fb5ad2.tar.zst
ferdium-app-3c870aecc1a4e440b06da507063fb84348fb5ad2.zip
Merge branch 'develop' into fix-form-validation
Diffstat (limited to 'src')
-rw-r--r--src/components/layout/Sidebar.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/layout/Sidebar.js b/src/components/layout/Sidebar.js
index 915ebeace..fa269f216 100644
--- a/src/components/layout/Sidebar.js
+++ b/src/components/layout/Sidebar.js
@@ -42,6 +42,10 @@ export default class Sidebar extends Component {
42 tooltipEnabled: true, 42 tooltipEnabled: true,
43 }; 43 };
44 44
45 componentDidUpdate() {
46 ReactTooltip.rebuild();
47 }
48
45 enableToolTip() { 49 enableToolTip() {
46 this.setState({ tooltipEnabled: true }); 50 this.setState({ tooltipEnabled: true });
47 } 51 }