Spaces:
Running
Running
Fix Streamlit button compatibility issue
Browse files
app.py
CHANGED
@@ -926,7 +926,7 @@ with main_tab1:
|
|
926 |
|
927 |
# Process button - flush left with similar padding as file browser
|
928 |
with left_col:
|
929 |
-
process_button = st.button("Process Document"
|
930 |
|
931 |
# Image preprocessing preview in upload column, right after the process button
|
932 |
if any(preprocessing_options.values()) and uploaded_file.type.startswith('image/'):
|
|
|
926 |
|
927 |
# Process button - flush left with similar padding as file browser
|
928 |
with left_col:
|
929 |
+
process_button = st.button("Process Document")
|
930 |
|
931 |
# Image preprocessing preview in upload column, right after the process button
|
932 |
if any(preprocessing_options.values()) and uploaded_file.type.startswith('image/'):
|