milwright commited on
Commit
77407e5
·
1 Parent(s): 7a99a60

Fix Streamlit button compatibility issue

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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", width=300)
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/'):