We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddb7a42 commit 10ced2aCopy full SHA for 10ced2a
plugins/plugin-codeflare-dashboard/src/components/Job/Grid.tsx
@@ -208,10 +208,11 @@ export default class Grid extends React.PureComponent<GridProps> {
208
const flexDirection = this.legendPosition === "below" ? "column" : "row"
209
const alignItems = this.legendPosition === "below" ? "center" : "center"
210
const legendBoxProps = this.legendPosition === "below" ? { marginTop: 1 } : { marginLeft: 2 }
211
- // const flexWrap = this.legendPosition === "right" ? "wrap" : "nowrap"
+ const flexWrap = this.legendPosition === "right" ? "wrap" : "nowrap"
212
213
return (
214
<Box
215
+ flexWrap={flexWrap}
216
flexDirection={flexDirection}
217
alignItems={alignItems}
218
justifyContent="center"
0 commit comments