Merge pull request #2450 from marshmalien/fix/2433-hide-cred-list-label

Fix credential labels in jobs list
This commit is contained in:
Marliana Lara
2018-07-10 13:36:56 -04:00
committed by GitHub
4 changed files with 12 additions and 2 deletions

View File

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