Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ const AdvancedNetworkFields = () => {
);

return (
<Grid hasGutter className="pf-v6-u-ml-lg">
<Grid className="pf-v6-u-ml-lg">
<FieldArray name="clusterNetworks">
{() => (
<FormGroup fieldId="clusterNetworks" labelInfo={isDualStack && 'Primary'}>
{values.clusterNetworks?.map((_, index) => {
const networkSuffix = getNetworkLabelSuffix(index, isDualStack);
return (
<Grid hasGutter key={index}>
<GridItem className={'network-field-group pf-v6-u-pb-md'}>
<Grid key={index} className="pf-v6-u-pb-md">
<GridItem className={'network-field-group'}>
<OcmInputField
name={`clusterNetworks.${index}.cidr`}
label={
Expand All @@ -85,7 +85,7 @@ const AdvancedNetworkFields = () => {
labelInfo={index === 0 && isDualStack ? 'Primary' : ''}
/>
</GridItem>
<GridItem className={'network-field-group pf-v6-u-pb-md'}>
<GridItem className={'network-field-group'}>
<OcmInputField
name={`clusterNetworks.${index}.hostPrefix`}
label={
Expand Down Expand Up @@ -123,7 +123,7 @@ const AdvancedNetworkFields = () => {
{() => (
<FormGroup fieldId="serviceNetworks" labelInfo={isDualStack && 'Primary'}>
{values.serviceNetworks?.map((_, index) => (
<GridItem key={index} className={'network-field-group pf-v6-u-pb-md'}>
<GridItem key={index} className={'network-field-group'}>
<OcmInputField
name={`serviceNetworks.${index}.cidr`}
label={
Expand Down
Loading