From 99ae62700711f770e41b6808bb91c5ed668f87ea Mon Sep 17 00:00:00 2001 From: lucasgarfield Date: Mon, 18 Sep 2023 15:59:50 +0200 Subject: [PATCH] LaunchWizard: Correct architecture prop The `` architecture prop was specified incorrectly, which caused the Instance dropdown in the Launch wizard to fail to load instance types. --- src/Components/ImagesTable/Instance.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Components/ImagesTable/Instance.tsx b/src/Components/ImagesTable/Instance.tsx index 94c97609..dadfbbd4 100644 --- a/src/Components/ImagesTable/Instance.tsx +++ b/src/Components/ImagesTable/Instance.tsx @@ -130,8 +130,7 @@ const ProvisioningLink = ({ image={{ name: compose.image_name || compose.id, id: compose.id, - architecture: - compose.request.image_requests[0].upload_request.options, + architecture: compose.request.image_requests[0].architecture, provider: provider, sourceIDs: sourceIds, accountIDs: accountIds,