when option uniq is true, display message if you select multiple suggestions

This commit is contained in:
2021-05-10 19:13:50 +02:00
parent f7c08f02c2
commit 040884a039
4 changed files with 11 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ const parametersToString = ({ query, options }) => {
options.type.forEach(function(type) {
types += '&type[]=' + type;
});
return 'q=' + query + types + '&uniq=' + options.uniq;
return 'q=' + query + types;
};
/*