danielle2003 commited on
Commit
cb63dec
·
verified ·
1 Parent(s): 265a8f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -73,7 +73,7 @@ st.markdown("""
73
  section[data-testid="stSidebar"] {
74
  backdrop-filter: blur(10px);
75
  background: rgba(255, 255, 255, 0.15);
76
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01);
77
 
78
  [data-testid="stSidebar"] h2 {
79
  color: #FFFFFF; /* White headers in the sidebar */
@@ -220,7 +220,7 @@ if 'error' not in st.session_state:
220
  with st.sidebar:
221
  st.image("logo2.png", use_container_width=True)
222
  st.markdown("Dashboard Controls")
223
- ticker = st.text_input("Stock Ticker", st.session_state.get('last_ticker', "AMZN")).upper()
224
  model_type = st.selectbox(
225
  "Prediction Model",
226
  ("Bi-Directional LSTM", "Gated Recurrent Unit (GRU)"),
 
73
  section[data-testid="stSidebar"] {
74
  backdrop-filter: blur(10px);
75
  background: rgba(255, 255, 255, 0.15);
76
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
77
 
78
  [data-testid="stSidebar"] h2 {
79
  color: #FFFFFF; /* White headers in the sidebar */
 
220
  with st.sidebar:
221
  st.image("logo2.png", use_container_width=True)
222
  st.markdown("Dashboard Controls")
223
+ ticker = st.text_input("Stock Ticker", st.session_state.get('last_ticker', "AMZN"),disabled=True).upper()
224
  model_type = st.selectbox(
225
  "Prediction Model",
226
  ("Bi-Directional LSTM", "Gated Recurrent Unit (GRU)"),