Spaces:
Running
Running
James McCool
commited on
Commit
·
6215ea9
1
Parent(s):
09fdd0a
Refactor subscription notice links in scoring percentages for Simple view by removing display text for clarity
Browse files
app.py
CHANGED
@@ -361,18 +361,15 @@ with tab1:
|
|
361 |
column_config={
|
362 |
"Names": st.column_config.LinkColumn(
|
363 |
"Teams",
|
364 |
-
help="The Team being projected"
|
365 |
-
display_text='Subscription Only ($$)'
|
366 |
),
|
367 |
"8+ Runs": st.column_config.LinkColumn(
|
368 |
"8+ Runs",
|
369 |
-
help="How often the team scores eight or more runs, a threshold that indicates upside for GPPs"
|
370 |
-
display_text='Subscription Only ($$)'
|
371 |
),
|
372 |
"Own%": st.column_config.LinkColumn(
|
373 |
"Own%",
|
374 |
-
help="The projected sum ownership of hitters on the Team"
|
375 |
-
display_text='Subscription Only ($$)'
|
376 |
)
|
377 |
}, height=750, use_container_width = True, hide_index = True)
|
378 |
elif view_var == "Advanced":
|
|
|
361 |
column_config={
|
362 |
"Names": st.column_config.LinkColumn(
|
363 |
"Teams",
|
364 |
+
help="The Team being projected"
|
|
|
365 |
),
|
366 |
"8+ Runs": st.column_config.LinkColumn(
|
367 |
"8+ Runs",
|
368 |
+
help="How often the team scores eight or more runs, a threshold that indicates upside for GPPs"
|
|
|
369 |
),
|
370 |
"Own%": st.column_config.LinkColumn(
|
371 |
"Own%",
|
372 |
+
help="The projected sum ownership of hitters on the Team"
|
|
|
373 |
)
|
374 |
}, height=750, use_container_width = True, hide_index = True)
|
375 |
elif view_var == "Advanced":
|