Move participant number to the end of get_full_name().
This commit is contained in:
parent
c6fb710fb9
commit
be66a26353
@ -129,14 +129,14 @@ angular.module('OpenSlidesApp.users', [])
|
|||||||
addition = [];
|
addition = [];
|
||||||
|
|
||||||
// addition: add number and structure level
|
// addition: add number and structure level
|
||||||
if (number) {
|
|
||||||
addition.push(number);
|
|
||||||
}
|
|
||||||
if (structure_level) {
|
if (structure_level) {
|
||||||
addition.push(structure_level);
|
addition.push(structure_level);
|
||||||
}
|
}
|
||||||
|
if (number) {
|
||||||
|
addition.push(number);
|
||||||
|
}
|
||||||
if (addition.length > 0) {
|
if (addition.length > 0) {
|
||||||
name += ' (' + addition.join(', ') + ')';
|
name += ' (' + addition.join(' · ') + ')';
|
||||||
}
|
}
|
||||||
return name;
|
return name;
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user