What I’m trying to do
base filter looks for files that have any tag that is contained in current file’s tags, (or in the current file’s aliases if you use Tag Notes)
Things I have tried
file.tags.containsAny(this.tags) or
file.tags.containsAny(this.aliases)
or simply contains()
also thought the list property might first have to be converted to string using .toString() or .join(“,”)
Can’t get it to work.