fix(ui): assume role fields shown (#8485)

Co-authored-by: Alejandro Bailo <59607668+alejandrobailo@users.noreply.github.com>
Co-authored-by: Pablo Lara <larabjj@gmail.com>
This commit is contained in:
Prowler Bot
2025-08-08 09:41:08 +02:00
committed by GitHub
parent 8cdcbc7e60
commit 953d518bf3
2 changed files with 12 additions and 1 deletions
+9
View File
@@ -12,6 +12,15 @@ All notable changes to the **Prowler UI** are documented in this file.
### ❌ Removed
---
## [1.10.1] (Prowler v5.10.1)
### 🐞 Fixed
- Field for `Assume Role` in AWS role credentials form shown again [(#8484)](https://github.com/prowler-cloud/prowler/pull/8484)
---
## [1.10.0] (Prowler v5.10.0)
@@ -35,7 +35,9 @@ export const AWSRoleCredentialsForm = ({
});
const [showOptionalRole, setShowOptionalRole] = useState(false);
const showRoleSection =
(isCloudEnv && credentialsType === "aws-sdk-default") || showOptionalRole;
type === "providers" ||
(isCloudEnv && credentialsType === "aws-sdk-default") ||
showOptionalRole;
return (
<>