We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 221463e commit 11b99c0Copy full SHA for 11b99c0
1 file changed
src/stepper-component/stepperComponent.tsx
@@ -43,7 +43,11 @@ const Stepper = (props: IstepperProps): ReactElement => {
43
</div>
44
<div className='eachLabel'>
45
{step.label && (
46
- <span className={`labelTitle ${index === currentActiveStepIndexVal && 'activeLabelTitle'}`}>
+ <span
47
+ className={`labelTitle ${index === currentActiveStepIndexVal && 'activeLabelTitle'}`}
48
+ onClick={(): void => handleStepClick(index)}
49
+ role="presentation"
50
+ >
51
{step?.label}
52
</span>
53
)}
0 commit comments