Skip to content
Snippets Groups Projects

Display profile fields

Merged kPherox requested to merge kphrx/pleroma-fe:iss-149/profile-fields-display into develop
Files
2
@@ -123,6 +123,14 @@ const UserProfile = {
onTabSwitch (tab) {
this.tab = tab
this.$router.replace({ query: { tab } })
},
linkClicked ({ target }) {
if (target.tagName === 'SPAN') {
target = target.parentNode
}
if (target.tagName === 'A') {
window.open(target.href, '_blank')
}
}
},
watch: {
Loading