Dmitry Beresnev commited on
Commit
97980d5
·
1 Parent(s): 7b14cb0

fix the earnings calendar section

Browse files
Files changed (1) hide show
  1. app/pages/05_Dashboard.py +4 -4
app/pages/05_Dashboard.py CHANGED
@@ -800,7 +800,7 @@ with col4:
800
  st.markdown("---")
801
  st.markdown("## 📊 Market Intelligence - Predictions, Sectors & Events")
802
 
803
- col5, col6, col7, col8 = st.columns(4)
804
 
805
  with col5:
806
  # Prediction Markets Column
@@ -880,9 +880,9 @@ with col7:
880
  </style>
881
  """, unsafe_allow_html=True)
882
 
883
- with col8:
884
- # Earnings Calendar Column
885
- display_earnings_calendar(earnings_data, height="600px")
886
 
887
  # Display fetch errors in expander (less intrusive)
888
  if 'fetch_errors' in locals() and fetch_errors:
 
800
  st.markdown("---")
801
  st.markdown("## 📊 Market Intelligence - Predictions, Sectors & Events")
802
 
803
+ col5, col6, col7 = st.columns(3)
804
 
805
  with col5:
806
  # Prediction Markets Column
 
880
  </style>
881
  """, unsafe_allow_html=True)
882
 
883
+ st.markdown("---")
884
+ # Earnings Calendar - full width row
885
+ display_earnings_calendar(earnings_data, height="600px")
886
 
887
  # Display fetch errors in expander (less intrusive)
888
  if 'fetch_errors' in locals() and fetch_errors: