mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-18 18:11:57 +00:00
fix(PRWLR-7380): button nesting hydration error (#7998)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user