added + sign to class name generation

This commit is contained in:
Nicolas Constant 2018-10-30 23:03:53 -04:00
parent 2b123e386d
commit 334f96eb84
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ export class DatabindedTextComponent implements OnInit {
}
private getClassNameForLink(value: string): string {
let res = value.replace(/[.,\/#?!@$%\^&\*;:{}=\-_`~()]/g, "");
let res = value.replace(/[.,\/#?!@$%\^&\*;:{}=\+-_`~()]/g, "");
return `link-${res}`;
}