Spaces:
Sleeping
Sleeping
Jon Solow
commited on
Commit
·
0f65f49
1
Parent(s):
da0430d
Remove player images on ecr page for performance
Browse files- src/pages/3_ECR.py +2 -2
src/pages/3_ECR.py
CHANGED
@@ -35,7 +35,7 @@ def filtered_keeper_dataframe(data: pd.DataFrame, ranking_type_list: list[str],
|
|
35 |
is_advanced = st.checkbox("Show Advanced View")
|
36 |
|
37 |
id_cols = [
|
38 |
-
"player_square_image_url",
|
39 |
"player",
|
40 |
"pos",
|
41 |
"team",
|
@@ -64,7 +64,7 @@ def filtered_keeper_dataframe(data: pd.DataFrame, ranking_type_list: list[str],
|
|
64 |
height=35 * (len(filtered_data) + 1) + 12,
|
65 |
use_container_width=True,
|
66 |
column_config={
|
67 |
-
"player_square_image_url": st.column_config.ImageColumn(label="", help="Player image"),
|
68 |
},
|
69 |
)
|
70 |
|
|
|
35 |
is_advanced = st.checkbox("Show Advanced View")
|
36 |
|
37 |
id_cols = [
|
38 |
+
# "player_square_image_url",
|
39 |
"player",
|
40 |
"pos",
|
41 |
"team",
|
|
|
64 |
height=35 * (len(filtered_data) + 1) + 12,
|
65 |
use_container_width=True,
|
66 |
column_config={
|
67 |
+
# "player_square_image_url": st.column_config.ImageColumn(label="", help="Player image"),
|
68 |
},
|
69 |
)
|
70 |
|