diff --git a/web/src/components/product/ProductSelector.jsx b/web/src/components/product/ProductSelector.jsx
index b1351002b2..c732abef59 100644
--- a/web/src/components/product/ProductSelector.jsx
+++ b/web/src/components/product/ProductSelector.jsx
@@ -20,7 +20,7 @@
*/
import React from "react";
-import { Radio } from "@patternfly/react-core";
+import { Card, CardBody, Grid, GridItem, Radio } from "@patternfly/react-core";
import styles from '@patternfly/react-styles/css/utilities/Text/text';
import { _ } from "~/i18n";
@@ -33,15 +33,25 @@ const Label = ({ children }) => (
export default function ProductSelector({ products, defaultChecked }) {
if (products?.length === 0) return {_("No products available for selection")}
;
- return products.map((product, index) => (
- {product.name}}
- body={product.description}
- value={JSON.stringify(product)}
- defaultChecked={defaultChecked === product}
- />
- ));
+ return (
+
+ {products.map((product, index) => (
+
+
+
+ {product.name}}
+ body={product.description}
+ value={JSON.stringify(product)}
+ defaultChecked={defaultChecked === product}
+ />
+
+
+
+ ))}
+
+ );
}