From 9eee0feccfb4fe06e99e5b0bc4ecad85b3d4bd98 Mon Sep 17 00:00:00 2001 From: 18870 Date: Sat, 9 Oct 2021 19:14:42 +0800 Subject: [PATCH] Fix: Log area exceed its size limit --- module/webui/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/webui/widgets.py b/module/webui/widgets.py index 472e54758..e5fd81368 100644 --- a/module/webui/widgets.py +++ b/module/webui/widgets.py @@ -17,7 +17,7 @@ class ScrollableCode: self.id = ''.join(random.choice(string.ascii_letters) for _ in range(10)) self.html = '
' % self.id - self.output = output(put_html(self.html)) + self.output = put_html(self.html) def append(self, text): if text: