diff --git a/webapp_utils.py b/webapp_utils.py
index 846baf683..018a1ed25 100644
--- a/webapp_utils.py
+++ b/webapp_utils.py
@@ -1167,8 +1167,9 @@ def editTextArea(label: str, name: str, value: str = "",
text = '
\n'
text += \
' \n'
+ '"' + placeholder + '" '
+ text += 'name="' + name + '" '
+ text += 'style="height:' + height + 'px" ' + \
+ text += 'spellcheck="' + str(spellcheck).lower() + '">'
+ text += value + '\n'
return text