fix: Fix capacity unit in create share form

Fix capacity unit to GiB when create share

Change-Id: I7317653043ecd78b50147f697503c2437c08efb5
This commit is contained in:
Jingwei.Zhang 2022-05-24 11:16:03 +08:00
parent 54ce0336b9
commit d71494b2ed

View File

@ -188,7 +188,7 @@ export class Create extends FormAction {
},
{
name: 'size',
label: t('Capacity (GB)'),
label: t('Capacity (GiB)'),
type: 'slider-input',
max: this.maxSize,
min: minSize,
@ -198,7 +198,7 @@ export class Create extends FormAction {
},
{
name: 'size',
label: t('Capacity (GB)'),
label: t('Capacity (GiB)'),
type: 'input-int',
min: minSize,
display: !this.quotaIsLimit,