Skip to content

Commit a797d62

Browse files
authored
Fix z-index of KQL Suggestions dropdown (#79184) (#79203)
Fix from #4084
1 parent fb88696 commit a797d62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/plugins/data/public/ui/typeahead/suggestions_component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export class SuggestionsComponent extends Component<Props> {
154154
const StyledSuggestionsListDiv = styled.div`
155155
${(props: { queryBarRect: DOMRect; verticalListPosition: string }) => `
156156
position: absolute;
157-
z-index: 999;
157+
z-index: 4001;
158158
left: ${props.queryBarRect.left}px;
159159
width: ${props.queryBarRect.width}px;
160160
${props.verticalListPosition}`}

0 commit comments

Comments
 (0)