Added trim function for get_full_name/get_short_name.

Required by submitter comparison for motion import.
This commit is contained in:
Emanuel Schütze 2017-01-25 14:38:51 +01:00
parent e0d5f6d92f
commit 0d30c72270

View File

@ -54,7 +54,7 @@ angular.module('OpenSlidesApp.users', [])
if (title !== '') { if (title !== '') {
name = title + ' ' + name; name = title + ' ' + name;
} }
return name; return name.trim();
}, },
/* /*
* Returns a long form of the name. * Returns a long form of the name.
@ -82,7 +82,7 @@ angular.module('OpenSlidesApp.users', [])
if (addition.length > 0) { if (addition.length > 0) {
name += ' (' + addition.join(' · ') + ')'; name += ' (' + addition.join(' · ') + ')';
} }
return name; return name.trim();
}, },
getPerms: function() { getPerms: function() {
var allPerms = []; var allPerms = [];