mirror of https://github.com/kiwix/libkiwix.git
Fix fulltext search link in kiwix-serve suggestions
This commit is contained in:
parent
1bb5e278ed
commit
d0833bdcd4
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue