diff options
| -rw-r--r-- | background_scripts/completion.coffee | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee index 82a8f310..c9a03629 100644 --- a/background_scripts/completion.coffee +++ b/background_scripts/completion.coffee @@ -245,6 +245,10 @@ class HistoryCompleter catch null + # If this history item does not have a title and we found its query text above, then use its query + # text as its title. + entry.title ||= insertText if insertText? + new Suggestion queryTerms: queryTerms type: "history" |
