diff --git a/core/modules/tiddler.js b/core/modules/tiddler.js index 98d50c0c9..e32e77c41 100644 --- a/core/modules/tiddler.js +++ b/core/modules/tiddler.js @@ -24,7 +24,7 @@ exports.getFieldString = function(field) { var value = this.fields[field]; // Check for a missing field if(value === undefined) { - return undefined; + return ""; } // Parse the field with the associated module (if any) var fieldModule = $tw.Tiddler.fieldModules[field];