Skip to content

Commit

Permalink
fix height
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Jun 24, 2024
1 parent a42391d commit c2c0fd1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ def play_old_messages(container):
# disabled=model in st.session_state['rqa'] and st.session_state['rqa'][model].memory is None)

left_column, right_column = st.columns([1, 1])
right_column = right_column.container(height=600, border=False)
left_column = left_column.container(height=600, border=False)
right_column = right_column.container(border=True)
left_column = left_column.container(border=True)

with right_column:
uploaded_file = st.file_uploader(
Expand Down Expand Up @@ -483,5 +483,6 @@ def generate_color_gradient(num_elements):
input=st.session_state['binary'],
annotation_outline_size=2,
annotations=st.session_state['annotations'],
render_text=True
render_text=True,
height=600
)

0 comments on commit c2c0fd1

Please sign in to comment.