bulubula commited on
Commit
487cc38
1 Parent(s): e429989
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -159,7 +159,7 @@ def main():
159
  # Filter the competition summary dataframe by miner hotkey if a search term is entered
160
  if miner_hotkey_search:
161
  competition_summary_df = competition_summary_df[
162
- competition_summary_df["Miner hotkey"].str.contains(miner_hotkey_search, na=False, case=False)
163
  ]
164
 
165
  if not competition_summary_df.empty:
 
159
  # Filter the competition summary dataframe by miner hotkey if a search term is entered
160
  if miner_hotkey_search:
161
  competition_summary_df = competition_summary_df[
162
+ competition_summary_df["Winning Hotkey"].str.contains(miner_hotkey_search, na=False, case=False)
163
  ]
164
 
165
  if not competition_summary_df.empty: