fix(#1192): relation got cut off

This commit is contained in:
Florian Grandel 2020-01-09 16:24:47 +01:00
parent ce02d1dc98
commit 9a6b07e1e1

View File

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