limit number of results to 200, other tweaks

This commit is contained in:
azivner
2018-04-18 20:56:23 -04:00
parent 52b445f70b
commit 834bfa39c7
2 changed files with 35 additions and 16 deletions

View File

@@ -9,7 +9,7 @@ async function getAutocomplete(req) {
return results.map(res => {
return {
value: res.title + '(' + res.path + ')',
value: res.title + ' (' + res.path + ')',
title: res.title
}
});