Skip to content
Snippets Groups Projects

Add tabs to user settings

Merged Toromino requested to merge Toromino/pleroma-fe:user_settings_tabs into develop
3 files
+ 32
11
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -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
}
}
}
Loading