1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-27 06:38:19 +00:00

Update to check if empty sting OR (is array AND is empty)

This commit is contained in:
Matt Lauber 2016-02-16 08:08:09 -05:00
parent 22145e2e51
commit 5a14b37686

View File

@ -25,7 +25,7 @@ exports.has = function(source,operator,options) {
}); });
} else { } else {
source(function(tiddler,title) { source(function(tiddler,title) {
if(tiddler && $tw.utils.hop(tiddler.fields,operator.operand) && tiddler.fields[operator.operand] != "") { if(tiddler && $tw.utils.hop(tiddler.fields,operator.operand) && (tiddler.fields[operator.operand] !== "" || ($tw.utils.isArray(tiddler.fields[operator.operand]) && tiddler.fields[operator.operand].length == 0))) {
results.push(title); results.push(title);
} }
}); });