I had the same issue. I was able to make a change to the
addReminderToTiddler() method in ReminderMacros.
Look for the code in addRemindersToTiddler() that read
var title = window.story.findContainingTiddler(form).id.substr(7);
var tiddler=store.getTiddler(title);
and change them to
var here = window.story.findContainingTiddler(form);
var tiddler = store.getTiddler(here.getAttribute("tiddler"));
var title = tiddler.title;
Reload your TiddlyWiki and it the "ok" button should now work.
It looks like the layout of the tiddler datastructures has changed across
versions.
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/tiddlywiki/-/9pSwr7Qpf_cJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.