From 975265ec28ad8face54c98b59252aa514aef0c70 Mon Sep 17 00:00:00 2001 From: cardosofede Date: Wed, 2 Aug 2023 00:48:05 +0200 Subject: [PATCH] (feat) reduce height --- pages/bot_orchestration/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/bot_orchestration/app.py b/pages/bot_orchestration/app.py index baf91be..1ae02d7 100644 --- a/pages/bot_orchestration/app.py +++ b/pages/bot_orchestration/app.py @@ -193,8 +193,8 @@ with manage: board = Dashboard() w = SimpleNamespace( dashboard=board, - file_explorer=FileExplorer(board, 0, 0, 3, 12), - editor=Editor(board, 4, 0, 9, 12), + file_explorer=FileExplorer(board, 0, 0, 3, 8), + editor=Editor(board, 4, 0, 9, 8), ) st.session_state.w = w