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