BananaSauce commited on
Commit
e24c1ad
·
verified ·
1 Parent(s): 1134899

Update pre.py

Browse files
Files changed (1) hide show
  1. pre.py +6 -5
pre.py CHANGED
@@ -61,10 +61,7 @@ def add_app_description():
61
  app_title = '<p style="font-family:Roboto, sans-serif; color:#004E7C; font-size: 42px;">DataLink Compare</p>'
62
  st.markdown(app_title, unsafe_allow_html=True)
63
 
64
- # Add the new link here
65
- link_html = '<a href="https://scenarioswitcher.negadan77.workers.dev/" target="_blank">Open Scenario Processor</a>'
66
- st.markdown(link_html, unsafe_allow_html=True)
67
-
68
  is_selected = st.sidebar.checkbox('Show App Description', value=False)
69
 
70
  if is_selected:
@@ -82,4 +79,8 @@ def add_app_description():
82
  st.write("- Filter scenarios by functional area and status.")
83
  st.write("- Calculate average time spent for each functional area.")
84
  st.write("- Display bar graphs showing the number of failed scenarios.")
85
- st.write("- Identify consistent failures, new failures, and changes in passing scenarios.")
 
 
 
 
 
61
  app_title = '<p style="font-family:Roboto, sans-serif; color:#004E7C; font-size: 42px;">DataLink Compare</p>'
62
  st.markdown(app_title, unsafe_allow_html=True)
63
 
64
+
 
 
 
65
  is_selected = st.sidebar.checkbox('Show App Description', value=False)
66
 
67
  if is_selected:
 
79
  st.write("- Filter scenarios by functional area and status.")
80
  st.write("- Calculate average time spent for each functional area.")
81
  st.write("- Display bar graphs showing the number of failed scenarios.")
82
+ st.write("- Identify consistent failures, new failures, and changes in passing scenarios.")
83
+
84
+ # Add the new link here
85
+ link_html = '<p style="font-size: 14px;"><a href="https://scenarioswitcher.negadan77.workers.dev/" target="_blank">Open Scenario Processor</a></p>'
86
+ st.markdown(link_html, unsafe_allow_html=True)