mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-22 23:16:53 +00:00
Fix problem with default text handling in edit-text widget
This commit is contained in:
parent
9e3618bdcf
commit
8084837f48
@ -95,7 +95,9 @@ EditTextWidget.prototype.getEditInfo = function() {
|
||||
value = "";
|
||||
break;
|
||||
}
|
||||
value = this.editDefault;
|
||||
if(this.editDefault) {
|
||||
value = this.editDefault;
|
||||
}
|
||||
}
|
||||
}
|
||||
return {tiddler: tiddler, value: value};
|
||||
|
Loading…
Reference in New Issue
Block a user