Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -84,10 +84,10 @@ if uploaded_file is not None:
|
|
| 84 |
# Col 1:
|
| 85 |
with col1:
|
| 86 |
# Generate the HTML using Pygwalker
|
| 87 |
-
pyg_html = pyg.walk(df, return_html=True)
|
| 88 |
|
| 89 |
# Embed the HTML into the Streamlit app
|
| 90 |
-
components.html(pyg_html, height=
|
| 91 |
|
| 92 |
# Col 2:
|
| 93 |
with col2:
|
|
|
|
| 84 |
# Col 1:
|
| 85 |
with col1:
|
| 86 |
# Generate the HTML using Pygwalker
|
| 87 |
+
pyg_html = pyg.walk(df, return_html=True, height=1000)
|
| 88 |
|
| 89 |
# Embed the HTML into the Streamlit app
|
| 90 |
+
components.html(pyg_html, height=700, scrolling=True)
|
| 91 |
|
| 92 |
# Col 2:
|
| 93 |
with col2:
|