diff --git a/server.py b/server.py
index 8fe6bbd..f32ea15 100644
--- a/server.py
+++ b/server.py
@@ -601,6 +601,7 @@ def render_home_html(actor_id: Optional[str] = None) -> str:
Runs
Recipes
Media
+ Storage
API Docs
{user_section}
@@ -3802,6 +3803,7 @@ def render_page(title: str, content: str, actor_id: Optional[str] = None, active
runs_active = "border-b-2 border-blue-500 text-white" if active_tab == "runs" else "text-gray-400 hover:text-white"
recipes_active = "border-b-2 border-blue-500 text-white" if active_tab == "recipes" else "text-gray-400 hover:text-white"
media_active = "border-b-2 border-blue-500 text-white" if active_tab == "media" else "text-gray-400 hover:text-white"
+ storage_active = "border-b-2 border-blue-500 text-white" if active_tab == "storage" else "text-gray-400 hover:text-white"
return f"""
@@ -3825,6 +3827,7 @@ def render_page(title: str, content: str, actor_id: Optional[str] = None, active
Runs
Recipes
Media
+ Storage
Download Client
@@ -3864,6 +3867,7 @@ def render_ui_html(actor_id: Optional[str] = None, tab: str = "runs") -> str:
runs_active = "border-b-2 border-blue-500 text-white" if tab == "runs" else "text-gray-400 hover:text-white"
recipes_active = "border-b-2 border-blue-500 text-white" if tab == "recipes" else "text-gray-400 hover:text-white"
media_active = "border-b-2 border-blue-500 text-white" if tab == "media" else "text-gray-400 hover:text-white"
+ storage_active = "border-b-2 border-blue-500 text-white" if tab == "storage" else "text-gray-400 hover:text-white"
if tab == "runs":
content_url = "/ui/runs"
@@ -3894,6 +3898,7 @@ def render_ui_html(actor_id: Optional[str] = None, tab: str = "runs") -> str:
Runs
Recipes
Media
+ Storage
Download Client