Skip to content

Commit

Permalink
Fixed #6001 - Stepper: linear mode disabled header defect
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Jul 2, 2024
1 parent 0938027 commit 57f037c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/primevue/src/step/style/StepStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const classes = {
'p-step',
{
'p-step-active': instance.active,
'p-disabled': instance.isStepDisabled() || props.disabled
'p-disabled': !instance.active && (instance.isStepDisabled() || props.disabled)
}
],
header: 'p-step-header',
Expand Down

0 comments on commit 57f037c

Please sign in to comment.