mirror of
https://github.com/ansible/awx.git
synced 2026-09-05 19:38:36 -02:30
Merge pull request #2450 from marshmalien/fix/2433-hide-cred-list-label
Fix credential labels in jobs list
This commit is contained in:
@@ -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 };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user