Skip to content

Commit

Permalink
fix: doc tooltip not filtering properly
Browse files Browse the repository at this point in the history
  • Loading branch information
akoreman committed Oct 23, 2023
1 parent c8379be commit e5034c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ class Autocomplete {

updateDocTooltip() {
var popup = this.popup;
var all = popup.data;
var all = this.completions.filtered;
var selected = all && (all[popup.getHoveredRow()] || all[popup.getRow()]);
var doc = null;
if (!selected || !this.editor || !this.popup.isOpen)
Expand Down

0 comments on commit e5034c7

Please sign in to comment.