diff --git a/web/src/components/storage/VolumeForm.jsx b/web/src/components/storage/VolumeForm.jsx index 5a1f6109c6..b18f5b132e 100644 --- a/web/src/components/storage/VolumeForm.jsx +++ b/web/src/components/storage/VolumeForm.jsx @@ -22,10 +22,10 @@ import React, { useReducer } from "react"; import { - InputGroup, + InputGroup, InputGroupItem, Form, FormGroup, FormSelect, FormSelectOption, Radio, - TextInput + TextInput, } from "@patternfly/react-core"; import { sprintf } from "sprintf-js"; @@ -139,28 +139,32 @@ const SizeManual = ({ errors, formData, onChange }) => { validated={errors.size && 'error'} > - onChange({ size })} - validated={errors.size && 'error'} - /> - onChange({ sizeUnit })} - /> + + onChange({ size })} + validated={errors.size && 'error'} + /> + + + onChange({ sizeUnit })} + /> + @@ -196,22 +200,26 @@ and maximum. If no maximum is given then the file system will be as big as possi helperTextInvalid={errors.minSize} > - onChange({ minSize })} - validated={errors.minSize && 'error'} - /> - onChange({ minSizeUnit })} - /> + + onChange({ minSize })} + validated={errors.minSize && 'error'} + /> + + + onChange({ minSizeUnit })} + /> + - onChange({ maxSize })} - - /> - onChange({ maxSizeUnit })} - /> + + onChange({ maxSize })} + + /> + + + onChange({ maxSizeUnit })} + /> +