فهرست منبع

Fix tooltip not showing the first time

When the wizard options are rendered for the first time the tooltips are
not shown when hovering over the question mark symbol (as seen in
advanced Azure options at the Linux Migration Image field).
Sergiu Miclea 8 سال پیش
والد
کامیت
030ce61c66
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      src/components/organisms/WizardOptions/WizardOptions.jsx

+ 4 - 0
src/components/organisms/WizardOptions/WizardOptions.jsx

@@ -77,6 +77,10 @@ class WizardOptions extends React.Component<Props> {
     window.addEventListener('resize', this.handleResize)
   }
 
+  componentDidUpdate() {
+    Tooltip.rebuild()
+  }
+
   componentWillUnmount() {
     window.removeEventListener('resize', this.handleResize, false)
   }