Separate lines

main
Bob Mottram 2021-07-22 19:50:31 +01:00
parent 947f7131ef
commit 2069d6ea8e
1 changed files with 5 additions and 4 deletions

View File

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