main
Bob Mottram 2021-07-22 19:51:39 +01:00
parent 2069d6ea8e
commit bde7401d13
1 changed files with 1 additions and 1 deletions

View File

@ -1169,7 +1169,7 @@ def editTextArea(label: str, name: str, value: str = "",
' <textarea id="message" placeholder=' + \ ' <textarea id="message" placeholder=' + \
'"' + placeholder + '" ' '"' + placeholder + '" '
text += 'name="' + name + '" ' text += 'name="' + name + '" '
text += 'style="height:' + height + 'px" ' + \ text += 'style="height:' + height + 'px" '
text += 'spellcheck="' + str(spellcheck).lower() + '">' text += 'spellcheck="' + str(spellcheck).lower() + '">'
text += value + '</textarea>\n' text += value + '</textarea>\n'
return text return text