I wanted to apply a view template to all tiddlers that appear in a field ‘related’ of any tiddler. So, I wrote the following in a tiddler named ‘ViewTemplateRelated’ and tagged it with ‘$:/tags/ViewTemplate’
<$list filter="[all[current]get[related]enlist-input[]unique[]!is[missing]sort[]]">
Hello World
</$list>
The tiddlers that appear in the ‘related’ field of several tiddlers are unaffected. But several other tiddlers display Hello World!
What has gone wrong? How do I set it right?
By the way,
<$list filter="[get[related]enlist-input[]unique[]!is[missing]sort[]]">
<$link />
</$list>
works as expected.