From 127f660c91020dcbb43897d954066b31af729e74 Mon Sep 17 00:00:00 2001 From: "jeremy@jermolene.com" Date: Sun, 28 Aug 2022 15:12:51 +0100 Subject: [PATCH] Edit widget: remove default text "Type the text for the tiddler 'foo'" Fixes #6152 --- core/modules/editor/factory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/editor/factory.js b/core/modules/editor/factory.js index 5cc9a2662..118f44f43 100644 --- a/core/modules/editor/factory.js +++ b/core/modules/editor/factory.js @@ -115,7 +115,7 @@ function editTextWidgetFactory(toolbarEngine,nonToolbarEngine) { // Otherwise, we need to construct a default value for the editor switch(this.editField) { case "text": - value = "Type the text for the tiddler '" + this.editTitle + "'"; + value = ""; type = "text/vnd.tiddlywiki"; break; case "title":