fix(PRWLR-7380): button nesting hydration error (#7998)

This commit is contained in:
sumit-tft
2025-06-12 13:32:20 +05:30
committed by GitHub
parent e09e3855b1
commit d393bc48a2
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -8,6 +8,7 @@ All notable changes to the **Prowler UI** are documented in this file.
- Fix sync between filter buttons and URL when filters change. [(#7928)](https://github.com/prowler-cloud/prowler/pull/7928)
- Improve heatmap perfomance. [(#7934)](https://github.com/prowler-cloud/prowler/pull/7934)
- SelectScanProvider warning fixed with empty alias. [(#7998)](https://github.com/prowler-cloud/prowler/pull/7998)
### 🚀 Added
@@ -80,8 +80,8 @@ export const SelectScanProvider = <
{providers.map((item) => (
<SelectItem
key={item.providerId}
textValue={item.alias}
aria-label={item.alias}
textValue={`${item.providerType} - ${item.alias || ""} ${item.uid}`}
aria-label={`${item.providerType} provider ${item.alias}`}
>
<div className="flex items-center gap-2">
<EntityInfoShort