James McCool commited on
Commit
6b3074f
·
1 Parent(s): e278952

Add table display for combined portfolio in app.py: enhance user experience by showing the combined selected rows in a table format, improving visibility and interaction with the portfolio data.

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -935,6 +935,8 @@ with tab3:
935
 
936
  # Combine all selected rows
937
  portfolio_copy = pd.concat(selected_rows)
 
 
938
 
939
  # Update export_file with filtered data
940
  export_file = portfolio_copy.copy()
 
935
 
936
  # Combine all selected rows
937
  portfolio_copy = pd.concat(selected_rows)
938
+
939
+ st.table(portfolio_copy)
940
 
941
  # Update export_file with filtered data
942
  export_file = portfolio_copy.copy()