Hello,
Running TiddliWiki 5.3.1 from Vivaldi browser using the Timimi extension to save. Default layout.
I use TiddlyWiki to keep my lab notebook. I am trying to create a button that lets me find the next or previous journal entry and open it. The tiddler where I have this code is tagged $:/tags/ViewToolbar. Here’s what I have:
<$set name="nextJournalTiddler" filter="[tag[Journal]sort[]after{!!title}]">
<$button message="Next journal tiddler" tooltip="Next journal tiddler" class=<<tv-config-toolbar-class>>>
<$action-navigate $to=<<nextJournalTiddler>> />
{{$:/core/images/chevron-right}}
</$button>
</$set>
The previous entry button is basically the same code.
Say that I have three journal tiddlers:
- 2025-04-01
- 2025-04-02
- 2025-04-03 Experiments
If I have the first of these open and I press the button, it works as intended: the second tiddler on the list is opened. On the other hand, when the next tiddler in line is the third, instead of it being opened a new missing tiddler is created named [[2025-04-03 Experiments]]. I tried infinite fixes with the help of ChatGPT with no avail. I’m sure it’s something very stupid, please help!