mirror of https://github.com/apache/cloudstack.git
ui: Fix Add secondary storage (#6241)
This PR fixes the Add secondary storage wizard failing due to a missing parameter Fixes: #6239
This commit is contained in:
parent
8add4df0fa
commit
e0ce0228cc
|
|
@ -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 }"
|
||||
|
|
|
|||
Loading…
Reference in New Issue