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

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


The following commit(s) were added to refs/heads/main by this push:
     new e0ce0228cc0 ui: Fix Add secondary storage (#6241)
e0ce0228cc0 is described below

commit e0ce0228cc01f667f36999cb6cf225a24a7deb86
Author: Nicolas Vazquez <nicovazque...@gmail.com>
AuthorDate: Mon Apr 11 05:16:36 2022 -0300

    ui: Fix Add secondary storage (#6241)
    
    This PR fixes the Add secondary storage wizard failing due to a missing 
parameter
    Fixes: #6239
---
 ui/src/views/infra/AddSecondaryStorage.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/views/infra/AddSecondaryStorage.vue 
b/ui/src/views/infra/AddSecondaryStorage.vue
index 9d56a2fb995..3dbf8ccca71 100644
--- a/ui/src/views/infra/AddSecondaryStorage.vue
+++ b/ui/src/views/infra/AddSecondaryStorage.vue
@@ -28,7 +28,7 @@
         <a-form-item name="name" ref="name" :label="$t('label.name')">
           <a-input v-model:value="form.name" v-focus="true" />
         </a-form-item>
-        <a-form-item name="" ref="" :label="$t('label.providername')">
+        <a-form-item name="provider" ref="provider" 
:label="$t('label.providername')">
           <a-select
             v-model:value="form.provider"
             @change="val => { form.provider = val }"

Reply via email to