mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-03 07:42:37 -08:00
Fixed the view macro to fail silently if the target tiddler doesn't exist
This commit is contained in:
parent
fc19a77353
commit
6b6def8725
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ exports.executeMacro = function() {
|
|||
} else {
|
||||
switch(field) {
|
||||
case "text":
|
||||
value = "The tiddler '" + this.tiddlerTitle + "' does not exist";
|
||||
value = "";
|
||||
break;
|
||||
case "title":
|
||||
value = this.tiddlerTitle;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue