Lisibonny commited on
Commit
2dc328b
1 Parent(s): 57bca4c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -144,11 +144,11 @@ def main():
144
  st.write("---")
145
 
146
  bottom_menu = st.columns((2))
147
- with bottom_menu[1]:
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)
150
 
151
- with bottom_menu[0]:
152
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
153
 
154
  with pagination:
 
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)
150
 
151
+ with bottom_menu[1]:
152
  st.markdown(f"Página **{current_page}** de **{total_pages}** ")
153
 
154
  with pagination: