Make default selection the bottom option

closes #86
This commit is contained in:
joeyak 2019-04-18 10:31:34 -04:00
parent b41c93d19d
commit 40f4cc72ae
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ func updateSuggestionDiv() {
if len(filteredSug) > 0 {
// set current name to first if not set already
if currentSug == "" {
currentSug = filteredSug[0]
currentSug = filteredSug[len(filteredSug)-1]
}
var hascurrentSuggestion bool