From 2e8dadc4799769ff668fc453466e65269ec899e2 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Tue, 5 Jul 2022 19:54:20 +0200 Subject: [PATCH] UI: Increase height of footer pop-over --- web/app/src/components/footer/NotificationList.vue | 2 +- web/app/src/components/footer/TaskLog.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/src/components/footer/NotificationList.vue b/web/app/src/components/footer/NotificationList.vue index 63dabaf6..f1de459b 100644 --- a/web/app/src/components/footer/NotificationList.vue +++ b/web/app/src/components/footer/NotificationList.vue @@ -32,7 +32,7 @@ const tabOptions = { headerVisible: false, layout: "fitDataStretch", resizableColumnFit: true, - height: "calc(20vh - 3rem)", // Must be set in order for the virtual DOM to function correctly. + height: "calc(25vh - 3rem)", // Must be set in order for the virtual DOM to function correctly. data: notifs.history, placeholder: "Notification history will appear here", selectable: false, diff --git a/web/app/src/components/footer/TaskLog.vue b/web/app/src/components/footer/TaskLog.vue index 0bbbfd45..2ee101fb 100644 --- a/web/app/src/components/footer/TaskLog.vue +++ b/web/app/src/components/footer/TaskLog.vue @@ -21,7 +21,7 @@ const tabOptions = { headerVisible: false, layout: "fitDataStretch", resizableColumnFit: true, - height: "calc(20vh - 3rem)", // Must be set in order for the virtual DOM to function correctly. + height: "calc(25vh - 3rem)", // Must be set in order for the virtual DOM to function correctly. data: taskLog.history, placeholder: "Task log will appear here", selectable: false,