mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 13:01:56 +00:00
fix(ui): Removed the alias if not available in findings detail page (#7751)
This commit is contained in:
@@ -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)
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -307,7 +307,9 @@ export const FindingDetail = ({
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 gap-4 md:grid-cols-2">
|
||||
<InfoField label="Alias">{provider.alias}</InfoField>
|
||||
{provider.alias && (
|
||||
<InfoField label="Alias">{provider.alias}</InfoField>
|
||||
)}
|
||||
<InfoField label="Connection Status">
|
||||
<span
|
||||
className={`${provider.connection.connected ? "text-green-500" : "text-red-500"}`}
|
||||
|
||||
Reference in New Issue
Block a user