pull/6798/head
tugcekucukoglu 2024-11-15 15:22:19 +03:00
parent c81a5ff6bd
commit 3b9c26935c
1 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ export default {
'aria-current': this.active ? 'step' : undefined, 'aria-current': this.active ? 'step' : undefined,
'data-pc-name': 'step', 'data-pc-name': 'step',
'data-pc-section': 'root', 'data-pc-section': 'root',
'data-p-disabled': this.disabled, 'data-p-disabled': this.isStepDisabled,
'data-p-active': this.active 'data-p-active': this.active
}, },
header: { header: {
@ -86,7 +86,7 @@ export default {
taindex: this.disabled ? -1 : undefined, taindex: this.disabled ? -1 : undefined,
'aria-controls': this.ariaControls, 'aria-controls': this.ariaControls,
'data-pc-section': 'header', 'data-pc-section': 'header',
disabled: this.disabled, disabled: this.isStepDisabled,
onClick: this.onStepClick onClick: this.onStepClick
} }
}; };