mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
export default {
|
|
methods: {
|
|
userName(userName, maxLength) {
|
|
// Return Anonymous if no Username is given
|
|
if (!userName) {
|
|
return this.$t('profile.userAnonym')
|
|
}
|
|
// Return full Username or truncated Username
|
|
return maxLength ? this.$filters.truncate(userName, maxLength) : userName
|
|
}
|
|
}
|
|
}
|