Fixed #6763
parent
c81a5ff6bd
commit
3b9c26935c
|
@ -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
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue