1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-26 07:13:15 +00:00

The list widget should parse the empty message as inline text

This commit is contained in:
Jeremy Ruston 2013-03-19 22:39:04 +00:00
parent 64c6e63cd4
commit d4ada346dd

View File

@ -82,7 +82,7 @@ ListWidget.prototype.getEmptyMessage = function() {
return {
type: "element",
tag: "span",
children: this.renderer.renderTree.wiki.parseText("text/vnd.tiddlywiki",this.emptyMessage).tree
children: this.renderer.renderTree.wiki.parseText("text/vnd.tiddlywiki",this.emptyMessage,{parseAsInline: true}).tree
};
};