mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-12-01 13:24:10 +01:00
Remove trailing commas. Fix #372
This commit is contained in:
parent
d2f7247654
commit
255be7335b
@ -1013,7 +1013,14 @@ OC.Contacts = OC.Contacts || {};
|
||||
.slice(0, 2).reverse().join(' ');
|
||||
|
||||
this.displayNames.lf = this.getPreferredValue('N', [this.displayNames.fn])
|
||||
.slice(0, 2).join(', ');
|
||||
.slice(0, 2).join(', ').trim();
|
||||
// Fix misplaced comma if either first or last name is missing
|
||||
if(this.displayNames.lf[0] === ',') {
|
||||
this.displayNames.lf = this.displayNames.lf.substr(1);
|
||||
}
|
||||
if(this.displayNames.lf[this.displayNames.lf.length-1] === ',') {
|
||||
this.displayNames.lf = this.displayNames.lf.substr(0, this.displayNames.lf.length-1);
|
||||
}
|
||||
|
||||
this.$listelem = this.$listTemplate.octemplate({
|
||||
id: this.id,
|
||||
|
Loading…
Reference in New Issue
Block a user