You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2020/05/14 17:38:34 UTC

[cloudstack-primate] branch master updated: compute: fix create sshkeypair account input (#340)

This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git


The following commit(s) were added to refs/heads/master by this push:
     new 12ea6a1  compute: fix create sshkeypair account input (#340)
12ea6a1 is described below

commit 12ea6a1fa2309f90c8915b3d16cb62d59db64a82
Author: Abhishek Kumar <ab...@gmail.com>
AuthorDate: Thu May 14 23:08:23 2020 +0530

    compute: fix create sshkeypair account input (#340)
    
    Fixes #335
    
    Signed-off-by: Abhishek Kumar <ab...@gmail.com>
---
 src/views/compute/CreateSSHKeyPair.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/compute/CreateSSHKeyPair.vue b/src/views/compute/CreateSSHKeyPair.vue
index f5a4551..9d0e3f7 100644
--- a/src/views/compute/CreateSSHKeyPair.vue
+++ b/src/views/compute/CreateSSHKeyPair.vue
@@ -54,7 +54,7 @@
         </a-form-item>
         <a-form-item :label="$t('account')" v-if="this.isAdminOrDomainAdmin() && !this.isObjectEmpty(this.selectedDomain) && this.selectedDomain.id !== null">
           <a-input
-            v-decorator="['name', {}]"
+            v-decorator="['account', {}]"
             :placeholder="apiParams.account.description"/>
         </a-form-item>