Merge pull request #94 from gconsidine/ui/fix/credentials-lookup

Ui/fix/credentials lookup
This commit is contained in:
Greg Considine
2017-07-28 15:36:37 -04:00
committed by GitHub
15 changed files with 319 additions and 107 deletions

View File

@@ -46,7 +46,7 @@ export default ['$scope', 'Rest', 'CredentialList', 'Prompt', 'ProcessErrors', '
}
$scope[list.name].forEach(credential => {
credential.kind = credentialType.getById(credential.credential_type).name;
credential.kind = credentialType.match('id', credential.credential_type).name;
});
}