Spaces:
Running
Running
Jon Solow
commited on
Commit
·
3674bbc
1
Parent(s):
5cdd201
Add experimental rerun
Browse files
src/pages/98_Load_Data.py
CHANGED
|
@@ -18,6 +18,7 @@ def get_page():
|
|
| 18 |
|
| 19 |
if st.button("Refresh Data"):
|
| 20 |
load_assets()
|
|
|
|
| 21 |
|
| 22 |
if selected_table := st.selectbox("Describe a table:", current_tables_list, index=0):
|
| 23 |
describe_df = duckdb.sql(f"DESCRIBE {selected_table}").df()
|
|
|
|
| 18 |
|
| 19 |
if st.button("Refresh Data"):
|
| 20 |
load_assets()
|
| 21 |
+
st.experimental_rerun()
|
| 22 |
|
| 23 |
if selected_table := st.selectbox("Describe a table:", current_tables_list, index=0):
|
| 24 |
describe_df = duckdb.sql(f"DESCRIBE {selected_table}").df()
|