diff --git a/recipes/VideoBots.py b/recipes/VideoBots.py
index 00e593fff..2caa2a730 100644
--- a/recipes/VideoBots.py
+++ b/recipes/VideoBots.py
@@ -1265,6 +1265,17 @@ def integration_test_config_screen(
st.newline()
broadcast_input(bi)
+ col1, col2 = st.columns(2, style={"align-items": "center"})
+ with col1:
+ st.write("###### Add Integration")
+ st.caption(f"Add another connection for {run_title}.")
+ with col2:
+ if st.button(
+ f' Add Integration',
+ key="btn_connect",
+ ):
+ raise RedirectException(add_integration)
+
col1, col2 = st.columns(2, style={"align-items": "center"})
with col1:
st.write("###### Disconnect")
@@ -1281,17 +1292,6 @@ def integration_test_config_screen(
bi.save()
st.experimental_rerun()
- col1, col2 = st.columns(2, style={"align-items": "center"})
- with col1:
- st.write("###### Add Integration")
- st.caption(f"Add another connection for {run_title}.")
- with col2:
- if st.button(
- f' Add Integration',
- key="btn_connect",
- ):
- raise RedirectException(add_integration)
-
def show_landbot_widget():
landbot_url = st.session_state.get("landbot_url")