mirror of
https://github.com/zadam/trilium.git
synced 2025-11-16 18:25:51 +01:00
usability improvements to autocomplete ("no results" etc.), needs refactoring
This commit is contained in:
@@ -23,7 +23,18 @@ async function showDialog() {
|
||||
source: async function(request, response) {
|
||||
const result = await server.get('autocomplete?query=' + encodeURIComponent(request.term));
|
||||
|
||||
response(result);
|
||||
if (result.length > 0) {
|
||||
response(result);
|
||||
}
|
||||
else {
|
||||
response([{
|
||||
label: "No results",
|
||||
value: "No results"
|
||||
}]);
|
||||
}
|
||||
},
|
||||
focus: function(event, ui) {
|
||||
return $(ui.item).val() !== 'No results';
|
||||
},
|
||||
minLength: 2
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user