diff --git a/tests/test_video_side_shell.py b/tests/test_video_side_shell.py
index 01ef0b80..67fdef53 100644
--- a/tests/test_video_side_shell.py
+++ b/tests/test_video_side_shell.py
@@ -20,8 +20,8 @@ _CSS_PATH = _ROOT / "webui" / "static" / "video" / "video-side.css"
EXPECTED_VIDEO_PAGES = {
"video-dashboard", "video-search", "video-discover", "video-library",
- "video-watchlist", "video-downloads", "video-calendar", "video-import",
- "video-settings", "video-issues", "video-help",
+ "video-watchlist", "video-wishlist", "video-downloads", "video-calendar",
+ "video-import", "video-settings", "video-issues", "video-help",
}
diff --git a/webui/index.html b/webui/index.html
index 3359dfc6..57486bd6 100644
--- a/webui/index.html
+++ b/webui/index.html
@@ -345,6 +345,10 @@
Watchlist
+
+
+ Wishlist
+
Downloads
diff --git a/webui/static/video/video-side.js b/webui/static/video/video-side.js
index dbdb6cb2..0b3392ea 100644
--- a/webui/static/video/video-side.js
+++ b/webui/static/video/video-side.js
@@ -30,6 +30,7 @@
{ id: 'video-discover', label: 'Discover' },
{ id: 'video-library', label: 'Library' },
{ id: 'video-watchlist', label: 'Watchlist' },
+ { id: 'video-wishlist', label: 'Wishlist' },
{ id: 'video-downloads', label: 'Downloads' },
{ id: 'video-calendar', label: 'Calendar' },
{ id: 'video-import', label: 'Import', shared: true },