This commit is contained in:
Ulf Gebhardt 2026-02-21 08:50:00 +01:00
parent e6e9629399
commit 76b9d3780b
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -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() {