Skip to content

Commit 8006021

Browse files
mvollmermartinpitt
authored andcommitted
networks: Fix spacing of helper text in "Create" dialog
The "IP configuration" FormGroup had the isStack property set, which in turn would change the top margin of FormHelperText inside that FormGroup from 4 pixels to -4 pixels. The isStack property does not seem to have any other effect, so let's remove it. Fixes: #1164
1 parent d0bb0a8 commit 8006021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/networks/createNetworkDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ const IpRow = ({
258258
validationFailed: ValidationFailed,
259259
}) => {
260260
return (
261-
<FormGroup fieldId='create-network-ip-configuration' label={_("IP configuration")} isStack>
261+
<FormGroup fieldId='create-network-ip-configuration' label={_("IP configuration")}>
262262
<FormSelect id='create-network-ip-configuration'
263263
value={dialogValues.ip}
264264
onChange={(_event, value) => onValueChanged('ip', value)}>

0 commit comments

Comments
 (0)