This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git commit 929b6e8ceb329c433f2c5daf5d0528170a0bb080 Author: Marcus Christie AuthorDate: Tue Oct 22 16:39:18 2019 -0400 AIRAVATA-3228 bug fix: show ssh cred description --- .../src/components/credentials/SSHCredentialSelector.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_airavata/apps/admin/static/django_airavata_admin/src/components/credentials/SSHCredentialSelector.vue b/django_airavata/apps/admin/static/django_airavata_admin/src/components/credentials/SSHCredentialSelector.vue index a58c007..f4b9ca0 100644 --- a/django_airavata/apps/admin/static/django_airavata_admin/src/components/credentials/SSHCredentialSelector.vue +++ b/django_airavata/apps/admin/static/django_airavata_admin/src/components/credentials/SSHCredentialSelector.vue @@ -69,7 +69,7 @@ export default { ? this.credentials.map(summary => { return { value: summary.token, - text: !summary.description ? summary.description : `No description (${summary.token})` + text: summary.description ? summary.description : `No description (${summary.token})` }; }) : [];