fix(saml): remove validation call on email domain change (#8638)

(cherry picked from commit b15e3d339c)

# Conflicts:
#	ui/CHANGELOG.md
This commit is contained in:
Alejandro Bailo
2025-09-03 17:04:51 +02:00
parent e60e673692
commit bd5de77927
2 changed files with 18 additions and 1 deletions
+18
View File
@@ -2,6 +2,24 @@
All notable changes to the **Prowler UI** are documented in this file.
<<<<<<< HEAD
=======
## [1.11.1] (Prowler v5.11.1)
### 🐞 Added
- Handle API responses and errors consistently across the app [(#8621)](https://github.com/prowler-cloud/prowler/pull/8621)
- No-permission message on the scan page [(#8624)](https://github.com/prowler-cloud/prowler/pull/8624)
### 🔄 Changed
- Markdown rendering in finding details page [(#8604)](https://github.com/prowler-cloud/prowler/pull/8604)
### 🐞 Fixed
- Scan page shows NoProvidersAdded when no providers [(#8626)](https://github.com/prowler-cloud/prowler/pull/8626)
- XML field in SAML configuration form validation [(#8638)](https://github.com/prowler-cloud/prowler/pull/8638)
>>>>>>> b15e3d339 (fix(saml): remove validation call on email domain change (#8638))
## [1.11.0] (Prowler v5.11.0)
### 🚀 Added
@@ -284,7 +284,6 @@ export const SamlConfigForm = ({
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
const newValue = e.target.value;
setEmailDomain(newValue);
validateFields(newValue, !!uploadedFile);
}}
/>