Skip to content

Commit

Permalink
FormHelper should not be inside InputGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
skobyda authored and martinpitt committed Apr 19, 2023
1 parent 067f318 commit 9414485
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/create-vm-dialog/createVmDialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -804,10 +804,10 @@ const MemoryRow = ({ memorySize, memorySizeUnit, nodeMaxMemory, minimumMemory, o
<FormSelectOption value={units.GiB.name} key={units.GiB.name}
label={_("GiB")} />
</FormSelect>
<FormHelper fieldId="memory-size"
helperTextInvalid={validationStateMemory == "error" && validationFailed.memory}
helperText={helperText} />
</InputGroup>
<FormHelper fieldId="memory-size"
helperTextInvalid={validationStateMemory == "error" && validationFailed.memory}
helperText={helperText} />
</FormGroup>
</>
);
Expand Down

0 comments on commit 9414485

Please sign in to comment.