Spaces:
Running
Running
fix height
Browse files- streamlit_app.py +4 -3
streamlit_app.py
CHANGED
|
@@ -285,8 +285,8 @@ with st.sidebar:
|
|
| 285 |
# disabled=model in st.session_state['rqa'] and st.session_state['rqa'][model].memory is None)
|
| 286 |
|
| 287 |
left_column, right_column = st.columns([1, 1])
|
| 288 |
-
right_column = right_column.container(
|
| 289 |
-
left_column = left_column.container(
|
| 290 |
|
| 291 |
with right_column:
|
| 292 |
uploaded_file = st.file_uploader(
|
|
@@ -483,5 +483,6 @@ with left_column:
|
|
| 483 |
input=st.session_state['binary'],
|
| 484 |
annotation_outline_size=2,
|
| 485 |
annotations=st.session_state['annotations'],
|
| 486 |
-
render_text=True
|
|
|
|
| 487 |
)
|
|
|
|
| 285 |
# disabled=model in st.session_state['rqa'] and st.session_state['rqa'][model].memory is None)
|
| 286 |
|
| 287 |
left_column, right_column = st.columns([1, 1])
|
| 288 |
+
right_column = right_column.container(border=True)
|
| 289 |
+
left_column = left_column.container(border=True)
|
| 290 |
|
| 291 |
with right_column:
|
| 292 |
uploaded_file = st.file_uploader(
|
|
|
|
| 483 |
input=st.session_state['binary'],
|
| 484 |
annotation_outline_size=2,
|
| 485 |
annotations=st.session_state['annotations'],
|
| 486 |
+
render_text=True,
|
| 487 |
+
height=600
|
| 488 |
)
|