mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-04-06 01:25:38 +00:00
lint fix
This commit is contained in:
parent
e6e9629399
commit
76b9d3780b
@ -132,9 +132,7 @@ export default {
|
|||||||
},
|
},
|
||||||
groupNameTruncated() {
|
groupNameTruncated() {
|
||||||
const name = this.groupName
|
const name = this.groupName
|
||||||
return name.length > this.maxGroupChars
|
return name.length > this.maxGroupChars ? name.slice(0, this.maxGroupChars) + '...' : name
|
||||||
? name.slice(0, this.maxGroupChars) + '...'
|
|
||||||
: name
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user