ror HF Staff commited on
Commit
78473e2
Β·
1 Parent(s): 2862a06

Refresh whole page on refresh

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -299,10 +299,10 @@ with gr.Blocks(title="Model Test Results Dashboard", css=load_css(), delete_cach
299
  return "πŸ”— **CI Jobs:** *Error loading links*\n\n❓ **[FAQ](README.md)**"
300
 
301
 
302
- # Auto-update CI links when the interface loads
303
  demo.load(
304
- fn=get_ci_links,
305
- outputs=[ci_links_display]
306
  )
307
 
308
 
 
299
  return "πŸ”— **CI Jobs:** *Error loading links*\n\n❓ **[FAQ](README.md)**"
300
 
301
 
302
+ # Auto-update summary, description, and CI links when the interface loads
303
  demo.load(
304
+ fn=show_summary_and_update_links,
305
+ outputs=[summary_display, description_display, ci_links_display]
306
  )
307
 
308