Lisibonny commited on
Commit
4195e81
1 Parent(s): 2dc328b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -143,7 +143,7 @@ def main():
143
  pagination = st.container()
144
  st.write("---")
145
 
146
- bottom_menu = st.columns((2))
147
  with bottom_menu[2]:
148
  total_pages = (ceil(len(df_results) / batch_size) if ceil(len(df_results) / batch_size) > 0 else 1)
149
  current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)
 
143
  pagination = st.container()
144
  st.write("---")
145
 
146
+ bottom_menu = st.columns((3))
147
  with bottom_menu[2]:
148
  total_pages = (ceil(len(df_results) / batch_size) if ceil(len(df_results) / batch_size) > 0 else 1)
149
  current_page = st.number_input("Página", min_value=1, max_value=total_pages, step=1)