From f5ac4e0ed6d5622a12bddfb2b8eee3d8d71237cd Mon Sep 17 00:00:00 2001
From: Nils G <nils.gondermann@ruhr-uni-bochum.de>
Date: Mon, 6 Apr 2020 16:41:57 +0200
Subject: [PATCH] Minor fixes to debug window

---
 controllers/debug.py   | 5 ++---
 views/debug/index.html | 4 ++--
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/controllers/debug.py b/controllers/debug.py
index 00e415c..33c82af 100644
--- a/controllers/debug.py
+++ b/controllers/debug.py
@@ -1,3 +1,2 @@
-# -*- coding: utf-8 -*-
-# try something like
-def index(): return dict(message="hello from debug.py")
\ No newline at end of file
+def index():
+    return dict()
diff --git a/views/debug/index.html b/views/debug/index.html
index 934b6e0..7886bfe 100644
--- a/views/debug/index.html
+++ b/views/debug/index.html
@@ -8,14 +8,14 @@
             <u>You</u><br>
             <form>
                 URL: <input type="text" name="url" id="url" value="{{=URL('room','create')}}"><br>
-                <textarea rows=20 cols=60 id="input" placeholder="Your JSON parameters"></textarea><br>
+                <textarea rows=20 cols=80 id="input" placeholder="Your JSON parameters"></textarea><br>
                 <input type="submit">
             </form>
         </td>
         <td style="vertical-align: top">
             <u>Server</u><br>
             Status-Code<input type="text" id="status" readonly=""><br>
-            <textarea readonly="" rows=20 cols=60 id="server" placeholder="Server Response"></textarea><br>
+            <textarea readonly="" rows=20 cols=80 id="server" placeholder="Server Response"></textarea><br>
         </td>
     </tr>
 </table>
-- 
GitLab