From 364769030870c0ce9121fa528e2501117932c7fe Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Wed, 24 Oct 2012 22:13:44 +0100 Subject: [PATCH] Fixed typo in the list macro Pesky dots and dashes --- core/modules/macros/list/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/macros/list/list.js b/core/modules/macros/list/list.js index 382450215..6d345a29d 100644 --- a/core/modules/macros/list/list.js +++ b/core/modules/macros/list/list.js @@ -132,7 +132,7 @@ Create the tiddler macro needed to represent a given tiddler exports.createListElementMacro = function(title) { // Check if the tiddler is a draft var tiddler = this.wiki.getTiddler(title), - draft = tiddler ? tiddler.hasField("draft-of") : false; + draft = tiddler ? tiddler.hasField("draft.of") : false; // Figure out the template to use var template = this.params.template, templateText = this.params.templateText;