mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-24 10:37:20 +00:00
Fixed problem with obtaining stringified version of field content
This commit is contained in:
parent
6479fff012
commit
f89ca3c338
@ -170,7 +170,7 @@ TextEditor.prototype.getContent = function() {
|
||||
field = this.macroNode.hasParameter("field") ? this.macroNode.params.field : "title",
|
||||
value;
|
||||
if(tiddler) {
|
||||
value = tiddler[field];
|
||||
value = tiddler.getFieldString(field);
|
||||
} else {
|
||||
switch(field) {
|
||||
case "text":
|
||||
|
Loading…
Reference in New Issue
Block a user