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:
Nicolas Vazquez 2022-04-11 05:16:36 -03:00 committed by GitHub
parent 8add4df0fa
commit e0ce0228cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 }"