Spaces:
Running
Running
Update app_leaderboard.py
Browse files- app_leaderboard.py +1 -1
app_leaderboard.py
CHANGED
|
@@ -169,7 +169,7 @@ def get_demo(leaderboard_tab):
|
|
| 169 |
|
| 170 |
# filter the table based on the columns
|
| 171 |
issue_columns.sort()
|
| 172 |
-
df = df[
|
| 173 |
types = get_types(df)
|
| 174 |
display_df = get_display_df(df)
|
| 175 |
return gr.update(value=display_df, datatype=types, interactive=False)
|
|
|
|
| 169 |
|
| 170 |
# filter the table based on the columns
|
| 171 |
issue_columns.sort()
|
| 172 |
+
df = df[info_columns + issue_columns]
|
| 173 |
types = get_types(df)
|
| 174 |
display_df = get_display_df(df)
|
| 175 |
return gr.update(value=display_df, datatype=types, interactive=False)
|