diff --git a/web/package/agama-web-ui.changes b/web/package/agama-web-ui.changes index 741192a421..f59e102936 100644 --- a/web/package/agama-web-ui.changes +++ b/web/package/agama-web-ui.changes @@ -4,6 +4,12 @@ Fri Nov 15 16:48:44 UTC 2024 - Ladislav Slezák - Set the plain text password flag when setting the root and first user password (gh#agama-project/agama#1771) +------------------------------------------------------------------- +Fri Nov 15 08:26:29 UTC 2024 - David Diaz + +- Stick product selection form actions to bottom + (gh#agama-project/agama#1769). + ------------------------------------------------------------------- Thu Nov 14 14:42:46 UTC 2024 - Knut Anderssen diff --git a/web/src/components/product/ProductSelectionPage.tsx b/web/src/components/product/ProductSelectionPage.tsx index 9c97951717..c24135c712 100644 --- a/web/src/components/product/ProductSelectionPage.tsx +++ b/web/src/components/product/ProductSelectionPage.tsx @@ -24,7 +24,6 @@ import React, { useState } from "react"; import { Card, CardBody, - Flex, Form, Grid, GridItem, @@ -116,40 +115,40 @@ function ProductSelectionPage() { const isSelectionDisabled = !nextProduct || nextProduct === selectedProduct; return ( - -
-
- - - - - {products.map((product, index) => ( - - - - - - {selectedProduct && !isLoading && } - - {_("Select")} - - - - -
-
-
+ + +
+
+ + + + + {products.map((product, index) => ( + + + + +
+
+
+ + + + {_("Select")} + + +
); }