From c08d42036cfa9b61711fc8e5e72497bee4ba699d Mon Sep 17 00:00:00 2001 From: Prowler Bot Date: Tue, 17 Feb 2026 16:30:20 +0100 Subject: [PATCH] fix(ui): changes for update credetials for AliababaCloud provider (#10099) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Pedro Martín --- ui/CHANGELOG.md | 8 ++++++++ ui/components/providers/credentials-update-info.tsx | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index b346ee8405..59d9db5208 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the **Prowler UI** are documented in this file. +## [1.18.3] (Prowler UNRELEASED) + +### 🐞 Fixed + +- Update credentials for the Alibaba Cloud provider [(#10098)](https://github.com/prowler-cloud/prowler/pull/10098) + +--- + ## [1.18.2] (Prowler v5.18.2) ### 🐞 Fixed diff --git a/ui/components/providers/credentials-update-info.tsx b/ui/components/providers/credentials-update-info.tsx index 3fb13f97a7..bd99f594d9 100644 --- a/ui/components/providers/credentials-update-info.tsx +++ b/ui/components/providers/credentials-update-info.tsx @@ -1,5 +1,6 @@ "use client"; +import { SelectViaAlibabaCloud } from "@/components/providers/workflow/forms/select-credentials-type/alibabacloud"; import { SelectViaAWS } from "@/components/providers/workflow/forms/select-credentials-type/aws"; import { SelectViaGCP } from "@/components/providers/workflow/forms/select-credentials-type/gcp"; import { SelectViaGitHub } from "@/components/providers/workflow/forms/select-credentials-type/github"; @@ -28,6 +29,9 @@ export const CredentialsUpdateInfo = ({ if (providerType === "m365") { return ; } + if (providerType === "alibabacloud") { + return ; + } return null; };