mirror of https://gitlab.com/bashrc2/epicyon
Convert height to string
parent
bde7401d13
commit
fce53b6753
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue