fix(ui): fix attribute name

pull/5982/head
k3yi0 2022-07-12 10:40:43 +02:00
parent 5253a0568e
commit 0a8f5d2bf6
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ interface Props {
color?: ComponentColor color?: ComponentColor
disabled?: boolean disabled?: boolean
tooltipText?: string tooltipText?: string
test?: string testId?: string
} }
@ErrorHandling @ErrorHandling

View File

@ -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"