From 2a611955943d81157dc450666487277372a9c382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20D=C3=ADaz=20Gonz=C3=A1lez?= Date: Fri, 15 Nov 2024 08:26:14 +0000 Subject: [PATCH 1/2] refactor(web): stick product selector form actions to bottom --- .../product/ProductSelectionPage.tsx | 69 +++++++++---------- 1 file changed, 34 insertions(+), 35 deletions(-) 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")} + + +
); } From c9574799a9d8a04167f341323439b9c752b004de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20D=C3=ADaz=20Gonz=C3=A1lez?= Date: Fri, 15 Nov 2024 08:56:01 +0000 Subject: [PATCH 2/2] doc(web): update changelog file --- web/package/agama-web-ui.changes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/package/agama-web-ui.changes b/web/package/agama-web-ui.changes index 305c00a6d3..edcc822ca3 100644 --- a/web/package/agama-web-ui.changes +++ b/web/package/agama-web-ui.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +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