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
|
kiwix-lib 6.0.3
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
* fix fulltext search link in suggestions
|
||||||
* UI fixes in kiwix-serve rendering
|
* UI fixes in kiwix-serve rendering
|
||||||
|
|
||||||
kiwix-lib 6.0.2
|
kiwix-lib 6.0.2
|
||||||
|
|
|
@ -519,7 +519,7 @@ Response InternalServer::handle_suggest(const RequestContext& request)
|
||||||
if (reader->hasFulltextIndex()) {
|
if (reader->hasFulltextIndex()) {
|
||||||
kainjow::mustache::data result;
|
kainjow::mustache::data result;
|
||||||
result.set("label", "containing '" + term + "'...");
|
result.set("label", "containing '" + term + "'...");
|
||||||
result.set("value", term);
|
result.set("value", term + " ");
|
||||||
result.set("first", first);
|
result.set("first", first);
|
||||||
results.push_back(result);
|
results.push_back(result);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue