forked from AkkomaGang/akkoma-fe
Fix tab switcher not working when some tabs hidden
This commit is contained in:
parent
87311cff09
commit
3b02566e16
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ export default {
|
|||
activeIndex () {
|
||||
// In case of controlled component
|
||||
if (this.activeTab) {
|
||||
return this.slots().findIndex(slot => this.activeTab === slot.props.key)
|
||||
return this.slots().findIndex(slot => slot && slot.props && this.activeTab === slot.props.key)
|
||||
} else {
|
||||
return this.active
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue