Skip to content
This repository has been archived by the owner on Jun 24, 2023. It is now read-only.

Commit

Permalink
web-control: missing cols size for the textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsy committed May 13, 2016
1 parent 3962ecd commit c7b8e77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxenet-control-web.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def view_logfile():
html += """<div class="panel panel-default">"""
html += """<div class="panel-heading"><h3 class="panel-title">Logs</h3></div>"""
html += """<div class="panel-body">"""
html += """<textarea name="logs" rows="30" style="font: 100% Courier,sans-serif;" readonly>{}</textarea><br/>""".format(logs)
html += """<textarea name="logs" cols="130" rows="30" style="font: 100% Courier,sans-serif;" readonly>{}</textarea><br/>""".format(logs)
html += """</div>"""
html += """</div>"""
return build_html(body=html, page="log", title="Log file", headers=headers)
Expand Down

0 comments on commit c7b8e77

Please sign in to comment.