You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/10/22 21:10:40 UTC

[airavata-django-portal] 01/02: AIRAVATA-3228 bug fix: show ssh cred description

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 <ma...@apache.org>
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})`
             };
           })
         : [];