ui: fix import instance form root disk label (#5252)

Wrong key 'title' was used instead of 'label'

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
Abhishek Kumar 2021-07-29 14:43:59 +05:30 committed by GitHub
parent 98d42750cc
commit 5033426057
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@
<a-form-item>
<tooltip-label slot="label" :title="$t('label.disk.selection')" :tooltip="apiParams.datadiskofferinglist.description"/>
</a-form-item>
<a-form-item :title="$t('label.rootdisk')">
<a-form-item :label="$t('label.rootdisk')">
<a-select
v-decorator="['rootdiskid', {
rules: [{ required: true, message: $t('message.error.input.value'), }],