1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Action-createtiddler: Ensure child widgets are refreshed before invocation

Fixes #5791
This commit is contained in:
jeremy@jermolene.com 2021-06-14 18:13:51 +01:00
parent 9c0d6a46cc
commit 2da7ae0b73

View File

@ -104,6 +104,7 @@ CreateTiddlerWidget.prototype.invokeAction = function(triggeringWidget,event) {
}
this.setVariable("createTiddler-title",title);
this.setVariable("createTiddler-draftTitle",draftTitle);
this.refreshChildren();
return true; // Action was invoked
};