Merge "fix: Fix capacity unit in create share form"

This commit is contained in:
Zuul 2022-05-24 06:57:46 +00:00 committed by Gerrit Code Review
commit b873107bc8

View File

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