fix(ui): fix attribute name
parent
5253a0568e
commit
0a8f5d2bf6
|
@ -14,7 +14,7 @@ interface Props {
|
||||||
color?: ComponentColor
|
color?: ComponentColor
|
||||||
disabled?: boolean
|
disabled?: boolean
|
||||||
tooltipText?: string
|
tooltipText?: string
|
||||||
test?: string
|
testId?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
@ErrorHandling
|
@ErrorHandling
|
||||||
|
|
|
@ -26,7 +26,7 @@ class WizardCheckbox extends PureComponent<Props> {
|
||||||
active={isChecked}
|
active={isChecked}
|
||||||
onChange={this.onChangeSlideToggle}
|
onChange={this.onChangeSlideToggle}
|
||||||
tooltipText={text}
|
tooltipText={text}
|
||||||
dataTest={testId}
|
testId={testId}
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
className="wizard-checkbox--label"
|
className="wizard-checkbox--label"
|
||||||
|
|
Loading…
Reference in New Issue