Merge upstream

This commit is contained in:
Foxhkron 2018-08-19 01:23:03 +02:00
parent 5c3f6aebb9
commit 56ddeec8f3
No known key found for this signature in database
GPG key ID: 42C66A2EF2AA6608
3 changed files with 32 additions and 11 deletions

View file

@ -18,7 +18,8 @@ const UserSettings = {
deleteAccountError: false,
changePasswordInputs: [ '', '', '' ],
changedPassword: false,
changePasswordError: false
changePasswordError: false,
activeTab: 'profile'
}
},
components: {
@ -235,6 +236,9 @@ const UserSettings = {
this.changePasswordError = res.error
}
})
},
activateTab (tabName) {
this.activeTab = tabName
}
}
}