From 355abca5a37d44bb9ac7900296105c386a29c91e Mon Sep 17 00:00:00 2001 From: sumit-tft <70506234+sumit-tft@users.noreply.github.com> Date: Fri, 16 May 2025 12:32:47 +0530 Subject: [PATCH] fix(ui): Removed the alias if not available in findings detail page (#7751) --- ui/CHANGELOG.md | 1 + ui/components/findings/table/finding-detail.tsx | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index 1e80a6d44b..91dd269fd4 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -17,6 +17,7 @@ All notable changes to the **Prowler UI** are documented in this file. - Fix form validation in launch scan workflow. [(#7693)](https://github.com/prowler-cloud/prowler/pull/7693) - Moved ProviderType to a shared types file and replaced all occurrences across the codebase. [(#7710)](https://github.com/prowler-cloud/prowler/pull/7710) - Added filter to retrieve only connected providers on the scan page. [(#7723)](https://github.com/prowler-cloud/prowler/pull/7723) +- Removed the alias if not added from findings detail page. [(#7751)](https://github.com/prowler-cloud/prowler/pull/7751) --- diff --git a/ui/components/findings/table/finding-detail.tsx b/ui/components/findings/table/finding-detail.tsx index e58040a374..facd6a1d9f 100644 --- a/ui/components/findings/table/finding-detail.tsx +++ b/ui/components/findings/table/finding-detail.tsx @@ -307,7 +307,9 @@ export const FindingDetail = ({
- {provider.alias} + {provider.alias && ( + {provider.alias} + )}