From bd5de7792708f014558f5ceec3dc3447bd3cf53c Mon Sep 17 00:00:00 2001 From: Alejandro Bailo <59607668+alejandrobailo@users.noreply.github.com> Date: Wed, 3 Sep 2025 17:04:51 +0200 Subject: [PATCH] fix(saml): remove validation call on email domain change (#8638) (cherry picked from commit b15e3d339cd30c389787964208fd0e6f5b1ebc62) # Conflicts: # ui/CHANGELOG.md --- ui/CHANGELOG.md | 18 ++++++++++++++++++ .../integrations/saml/saml-config-form.tsx | 1 - 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index 1372359a34..5846aa557b 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -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 diff --git a/ui/components/integrations/saml/saml-config-form.tsx b/ui/components/integrations/saml/saml-config-form.tsx index ee50353d0b..304b897f67 100644 --- a/ui/components/integrations/saml/saml-config-form.tsx +++ b/ui/components/integrations/saml/saml-config-form.tsx @@ -284,7 +284,6 @@ export const SamlConfigForm = ({ onChange={(e: React.ChangeEvent) => { const newValue = e.target.value; setEmailDomain(newValue); - validateFields(newValue, !!uploadedFile); }} />