fixes and optimizations for search

This commit is contained in:
azivner
2018-06-05 22:47:47 -04:00
parent 45d9c7164c
commit e7a504c66b
4 changed files with 18 additions and 4 deletions

View File

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