fix: one more sanitization

This commit is contained in:
Knut Sveidqvist 2022-01-18 23:26:43 +01:00
parent 2210c73ae8
commit 3a2f6659a6
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ export const cleanupLabel = function (label) {
if (label.substring(0, 1) === ':') {
return common.sanitizeText(label.substr(1).trim(), configApi.getConfig());
} else {
return label.trim();
return sanitizeText(label.trim());
}
};