Rolls back changes to the xss filter. Removes unnecessary sanitize of credential names in tags

This commit is contained in:
mabashian
2018-06-28 08:59:36 -04:00
parent b54ea736b0
commit cbcc47010d
3 changed files with 4 additions and 4 deletions

View File

@@ -409,7 +409,7 @@ function buildCredentialDetails (credential) {
const icon = `${credential.kind}`;
const link = `/#/credentials/${credential.id}`;
const tooltip = strings.get('tooltips.CREDENTIAL');
const value = $filter('sanitize')(credential.name);
const value = credential.name;
return { icon, link, tooltip, value };
}