Wizard: add warning for the min size in bytes
This commit is contained in:
parent
63e9610beb
commit
c75dc5da21
2 changed files with 14 additions and 0 deletions
|
|
@ -257,6 +257,11 @@ const MinimumSize = ({ partition }: MinimumSizePropTypes) => {
|
|||
ariaLabel="minimum partition size"
|
||||
value={partition.min_size}
|
||||
isDisabled={partition.unit === 'B'}
|
||||
warning={
|
||||
partition.unit === 'B'
|
||||
? 'The Wizard only supports KiB, MiB, or GiB. Adjust or keep the current value.'
|
||||
: undefined
|
||||
}
|
||||
type="text"
|
||||
ouiaId="size"
|
||||
stepValidation={stepValidation}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue