I was trying to create a dynamic list containing a list of all tiddlers containing the current tiddler as a member of the field project.
I am in tiddler "B B" that carries the following code:
<ul>
<$list filter="[project[<<currentTiddler>>]]">
<li><$link /></li>
</$list>
</ul>
Another tiddler "D D" has [[A A]] and [[B B]] in participants.
So, ideally, "D D" should show up in my "B B" tiddler. But it doesn't.
How do I set things right?