Fix HarvesterQuotaDialog

Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
This commit is contained in:
Francesco Torchia 2024-10-01 15:29:36 +02:00
parent 77cedfd675
commit 52e3254f83
No known key found for this signature in database
GPG Key ID: E6D011B7415D4393

View File

@ -5,6 +5,7 @@ import { Banner } from '@components/Banner';
import AsyncButton from '@shell/components/AsyncButton';
import UnitInput from '@shell/components/form/UnitInput';
import { exceptionToErrorsArray } from '@shell/utils/error';
import { _EDIT } from '@shell/config/query-params';
export default {
name: 'HarvesterVMQuotaDialog',
@ -29,6 +30,7 @@ export default {
data() {
return {
_EDIT,
totalSnapshotSize: '',
errors: []
};
@ -90,7 +92,7 @@ export default {
v-int-number
:label="t('harvester.snapshot.totalSnapshotSize')"
:disabled="false"
:mode="create"
:mode="_EDIT"
:input-exponent="3"
:increment="1024"
:output-modifier="true"