#2496 A more delicate fix for issue

This commit is contained in:
Knut Sveidqvist
2021-11-17 21:31:52 +01:00
parent fcbd8a5081
commit 3feff08d42
3 changed files with 13 additions and 10 deletions

View File

@@ -25,7 +25,7 @@ const splitClassNameAndType = function (id) {
let split = id.split('~');
className = split[0];
genericType = split[1];
genericType = common.sanitizeText(split[1], configApi.getConfig());
}
return { className: className, type: genericType };