We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d165d3f commit 2daea20Copy full SHA for 2daea20
1 file changed
packages/module/src/FieldBuilder/FieldBuilder.tsx
@@ -228,6 +228,24 @@ export const FieldBuilder: FunctionComponent<FieldBuilderProps> = ({
228
{liveRegionMessage}
229
</div>
230
231
+ {/* Render the column headers */}
232
+ <Grid hasGutter className="pf-v6-u-mb-md">
233
+ <GridItem span={secondColumnLabel ? 5 : 10}>
234
+ <span className="pf-v6-c-form__label-text">
235
+ {firstColumnLabel}
236
+ </span>
237
+ </GridItem>
238
+ {secondColumnLabel && (
239
+ <GridItem span={5}>
240
241
+ {secondColumnLabel}
242
243
244
+ )}
245
+ {/* Empty GridItem to align with the remove button column */}
246
+ <GridItem span={2} />
247
+ </Grid>
248
+
249
{/* Render all the dynamic rows of fields */}
250
{renderRows()}
251
0 commit comments