Merge pull request #1194 from fgrandel/bug/1192_relation_cut_off

fix(#1192): relation got cut off
This commit is contained in:
Justin Greywolf 2020-01-14 09:35:00 -08:00 committed by GitHub
commit 244f423baf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,7 +140,7 @@ export const addMembers = function(className, members) {
export const cleanupLabel = function(label) { export const cleanupLabel = function(label) {
if (label.substring(0, 1) === ':') { if (label.substring(0, 1) === ':') {
return label.substr(2).trim(); return label.substr(1).trim();
} else { } else {
return label.trim(); return label.trim();
} }