Fix fulltext search link in kiwix-serve suggestions

This commit is contained in:
Kelson 2019-09-04 17:04:39 +02:00
parent 1bb5e278ed
commit d0833bdcd4
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
kiwix-lib 6.0.3
===============
* fix fulltext search link in suggestions
* UI fixes in kiwix-serve rendering
kiwix-lib 6.0.2

View File

@ -519,7 +519,7 @@ Response InternalServer::handle_suggest(const RequestContext& request)
if (reader->hasFulltextIndex()) {
kainjow::mustache::data result;
result.set("label", "containing '" + term + "'...");
result.set("value", term);
result.set("value", term + " ");
result.set("first", first);
results.push_back(result);
}