Refresh whole page on refresh
Browse files
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=
|
| 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 |
|