James McCool
commited on
Commit
·
e278952
1
Parent(s):
821975e
Add table display for portfolio copy in app.py: enhance user experience by showing the portfolio data in a table format, improving visibility and interaction with the portfolio information.
Browse files
app.py
CHANGED
@@ -919,7 +919,7 @@ with tab3:
|
|
919 |
portfolio_copy = st.session_state['portfolio'].copy()
|
920 |
else:
|
921 |
portfolio_copy = st.session_state['download_portfolio'].copy()
|
922 |
-
|
923 |
# Create a list to store selected rows
|
924 |
selected_rows = []
|
925 |
|
|
|
919 |
portfolio_copy = st.session_state['portfolio'].copy()
|
920 |
else:
|
921 |
portfolio_copy = st.session_state['download_portfolio'].copy()
|
922 |
+
st.table(portfolio_copy)
|
923 |
# Create a list to store selected rows
|
924 |
selected_rows = []
|
925 |
|