Skip to content

Commit

Permalink
EXISTS type error (#7730)
Browse files Browse the repository at this point in the history
## Summary
Using the `EXISTS` keyword causes an type error.,

## How did you test this change?
1) Visit the logs or traces page
2) Type in that a key exists
- [ ] No page crash
- [ ] Correct behavior for empty state

## Are there any deployment considerations?
N/A

## Does this work require review from our design team?
N/A
  • Loading branch information
SpennyNDaJets committed Feb 13, 2024
1 parent c262d5d commit 6755386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Search/SearchForm/SearchForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ export const Search: React.FC<{
sameWidth
>
<Box cssClass={styles.comboboxResults}>
{activePart.value.length > 0 && (
{activePart.value?.length > 0 && (
<Combobox.Group
className={styles.comboboxGroup}
store={comboboxStore}
Expand Down

0 comments on commit 6755386

Please sign in to comment.