Skip to content

Commit

Permalink
Merge pull request #460 from GooeyAI/bug_ui_integrations_dropdown
Browse files Browse the repository at this point in the history
fix: integrations dropdown overflow in mobile
  • Loading branch information
anish-work authored Sep 16, 2024
2 parents 0541624 + fdfc5db commit 00cd4f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipes/VideoBots.py
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,9 @@ def render_integrations_settings(
gui.markdown("#### Configure your Copilot")

if len(integrations) > 1:
with gui.div(style={"minWidth": "500px", "textAlign": "left"}):
with gui.div(
style={"width": "100%", "maxWidth": "500px", "textAlign": "left"}
):
integrations_map = {i.id: i for i in integrations}
bi_id = gui.selectbox(
label="",
Expand Down

0 comments on commit 00cd4f5

Please sign in to comment.