Skip to content

Commit

Permalink
Fixed #6763
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Nov 15, 2024
1 parent c81a5ff commit 3b9c269
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/primevue/src/step/Step.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
'aria-current': this.active ? 'step' : undefined,
'data-pc-name': 'step',
'data-pc-section': 'root',
'data-p-disabled': this.disabled,
'data-p-disabled': this.isStepDisabled,
'data-p-active': this.active
},
header: {
Expand All @@ -86,7 +86,7 @@ export default {
taindex: this.disabled ? -1 : undefined,
'aria-controls': this.ariaControls,
'data-pc-section': 'header',
disabled: this.disabled,
disabled: this.isStepDisabled,
onClick: this.onStepClick
}
};
Expand Down

0 comments on commit 3b9c269

Please sign in to comment.