fix: Fix double value for isRootSpan facet (#1469)

This commit is contained in:
Drew Davis 2025-12-12 10:35:52 -05:00 committed by GitHub
parent 69d9a4186d
commit 84d60a64f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"@hyperdx/app": patch
---
fix: Fix double value for isRootSpan facet

View file

@ -1010,7 +1010,7 @@ const DBSearchPageFiltersComponent = ({
for (const key of remainingFilterState) {
_facets.push({
key,
value: Array.from(filterState[key].included).map(v => v.toString()),
value: Array.from(filterState[key].included),
});
}