Merge branch 'from/develop/tusooa/1158-hidden-tabs' into 'develop'

Fix tab switcher not working when some tabs hidden

Closes #1158

See merge request pleroma/pleroma-fe!1511
remove-mods
HJ 2 years ago
commit 4d15cbcbbd

@ -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…
Cancel
Save