devjas1 commited on
Commit
fbec946
·
1 Parent(s): ecc39ab

FIX(dashboard): Correct file path references in dashboard and results manager

Browse files
Files changed (2) hide show
  1. pages/2_Dashboard.py +1 -1
  2. utils/results_manager.py +1 -1
pages/2_Dashboard.py CHANGED
@@ -1,4 +1,4 @@
1
- # In pages/2_📊_Dashboard.py
2
 
3
  import streamlit as st
4
  from utils.results_manager import ResultsManager
 
1
+ # In pages/2_Dashboard.py
2
 
3
  import streamlit as st
4
  from utils.results_manager import ResultsManager
utils/results_manager.py CHANGED
@@ -262,7 +262,7 @@ class ResultsManager:
262
  st.dataframe(df, use_container_width=True)
263
  with st.container(border=None, key="page-link-container"):
264
  st.page_link(
265
- "pages/2_📊_dashboard.py",
266
  label="Inference Analysis Dashboard",
267
  help="Dive deeper into your batch results.",
268
  use_container_width=False,
 
262
  st.dataframe(df, use_container_width=True)
263
  with st.container(border=None, key="page-link-container"):
264
  st.page_link(
265
+ "pages/2_dashboard.py",
266
  label="Inference Analysis Dashboard",
267
  help="Dive deeper into your batch results.",
268
  use_container_width=False,