mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-25 01:20:30 +00:00
Fix problem with search filter operator
This commit is contained in:
parent
597b8ca4b1
commit
3282bd948f
@ -18,7 +18,7 @@ Export our filter function
|
|||||||
exports.search = function(source,operator,options) {
|
exports.search = function(source,operator,options) {
|
||||||
var invert = operator.prefix === "!";
|
var invert = operator.prefix === "!";
|
||||||
return options.wiki.search(operator.operand,{
|
return options.wiki.search(operator.operand,{
|
||||||
titles: source,
|
source: source,
|
||||||
invert: invert
|
invert: invert
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user