mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
fix: Fix double value for isRootSpan facet (#1469)
This commit is contained in:
parent
69d9a4186d
commit
84d60a64f9
2 changed files with 6 additions and 1 deletions
5
.changeset/silent-terms-search.md
Normal file
5
.changeset/silent-terms-search.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
fix: Fix double value for isRootSpan facet
|
||||
|
|
@ -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),
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue