From 8e7442e197d1f9eaf5da5364feba0ff96e2d0888 Mon Sep 17 00:00:00 2001 From: cardosofede Date: Wed, 23 Aug 2023 02:27:41 +0200 Subject: [PATCH] (feat) refactored layout --- pages/master_conf/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/master_conf/app.py b/pages/master_conf/app.py index 49aa306..7684981 100644 --- a/pages/master_conf/app.py +++ b/pages/master_conf/app.py @@ -19,9 +19,9 @@ if "mc_board" not in st.session_state: board = Dashboard() mc_board = SimpleNamespace( dashboard=board, + launch_master_bot=LaunchMasterBotCard(board, 0, 0, 12, 1), file_explorer=MasterConfFileExplorer(board, 0, 4, 3, 7), editor=Editor(board, 4, 4, 9, 7), - launch_master_bot=LaunchMasterBotCard(board, 0, 0, 14, 1) ) st.session_state.mc_board = mc_board