From 1bdf4d71ddb1cf98fcdba7551bfe5a50cd88c0bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Fr=C4=85ckiewicz?= <1836094+SystemZ@users.noreply.github.com> Date: Sat, 13 Jan 2024 11:25:35 +0100 Subject: [PATCH] fix tail horizontal scrolling Before this change, debugging via logs was hard due to clipping width of the log box --- sist2-admin/frontend/src/views/Tail.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sist2-admin/frontend/src/views/Tail.vue b/sist2-admin/frontend/src/views/Tail.vue index a4ff33e..efe4b45 100644 --- a/sist2-admin/frontend/src/views/Tail.vue +++ b/sist2-admin/frontend/src/views/Tail.vue @@ -170,6 +170,6 @@ span.ADMIN { margin: 3px; white-space: pre; color: #000; - overflow: hidden; + overflow-y: hidden; } - \ No newline at end of file +