Convert height to string

main
Bob Mottram 2021-07-22 19:52:47 +01:00
parent bde7401d13
commit fce53b6753
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=' + \
'"' + placeholder + '" '
text += 'name="' + name + '" '
text += 'style="height:' + height + 'px" '
text += 'style="height:' + str(height) + 'px" '
text += 'spellcheck="' + str(spellcheck).lower() + '">'
text += value + '</textarea>\n'
return text