|
@@ -19,7 +19,6 @@ import styled from 'styled-components'
|
|
|
import { observer } from 'mobx-react'
|
|
import { observer } from 'mobx-react'
|
|
|
import autobind from 'autobind-decorator'
|
|
import autobind from 'autobind-decorator'
|
|
|
|
|
|
|
|
-import Tooltip from '../../atoms/Tooltip'
|
|
|
|
|
import StyleProps from '../../styleUtils/StyleProps'
|
|
import StyleProps from '../../styleUtils/StyleProps'
|
|
|
import ToggleButtonBar from '../../atoms/ToggleButtonBar'
|
|
import ToggleButtonBar from '../../atoms/ToggleButtonBar'
|
|
|
import WizardOptionsField from '../../molecules/WizardOptionsField'
|
|
import WizardOptionsField from '../../molecules/WizardOptionsField'
|
|
@@ -96,10 +95,6 @@ class WizardOptions extends React.Component<Props> {
|
|
|
window.addEventListener('resize', this.handleResize)
|
|
window.addEventListener('resize', this.handleResize)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- componentDidUpdate() {
|
|
|
|
|
- Tooltip.rebuild()
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
componentWillUnmount() {
|
|
componentWillUnmount() {
|
|
|
window.removeEventListener('resize', this.handleResize, false)
|
|
window.removeEventListener('resize', this.handleResize, false)
|
|
|
}
|
|
}
|
|
@@ -222,7 +217,6 @@ class WizardOptions extends React.Component<Props> {
|
|
|
<OneColumn>
|
|
<OneColumn>
|
|
|
{fields.map(f => f.component)}
|
|
{fields.map(f => f.component)}
|
|
|
</OneColumn>
|
|
</OneColumn>
|
|
|
- <Tooltip />
|
|
|
|
|
</Fields>
|
|
</Fields>
|
|
|
)
|
|
)
|
|
|
}
|
|
}
|
|
@@ -235,7 +229,6 @@ class WizardOptions extends React.Component<Props> {
|
|
|
<Column right>
|
|
<Column right>
|
|
|
{fields.map(f => f.column === 'right' && f.component)}
|
|
{fields.map(f => f.column === 'right' && f.component)}
|
|
|
</Column>
|
|
</Column>
|
|
|
- <Tooltip />
|
|
|
|
|
</Fields>
|
|
</Fields>
|
|
|
)
|
|
)
|
|
|
}
|
|
}
|