From 333616eaa2a9a475604cdf2b291e6a9c9816fe59 Mon Sep 17 00:00:00 2001 From: Ahtesham Quraish Date: Wed, 6 May 2026 18:16:39 +0500 Subject: [PATCH 1/2] fix the breadcrum on video collection page (#3304) Co-authored-by: Ahtesham Quraish --- .../VideoPlaylistCollectionPage/VideoDetailPage.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontends/main/src/app-pages/VideoPlaylistCollectionPage/VideoDetailPage.tsx b/frontends/main/src/app-pages/VideoPlaylistCollectionPage/VideoDetailPage.tsx index 063a1cf9a9..9b4a6eecc1 100644 --- a/frontends/main/src/app-pages/VideoPlaylistCollectionPage/VideoDetailPage.tsx +++ b/frontends/main/src/app-pages/VideoPlaylistCollectionPage/VideoDetailPage.tsx @@ -44,10 +44,10 @@ const PageWrapper = styled.div({ }) const BreadcrumbBar = styled.div(({ theme }) => ({ - padding: "20px 0 4px 0", - borderBottom: `2px solid ${theme.custom.colors.red}`, + padding: "18px 0 2px 0", + borderBottom: `1px solid ${theme.custom.colors.red}`, [theme.breakpoints.down("sm")]: { - padding: "16px 0 0 0", + padding: "12px 0 0 0", }, })) From 806eb8e81816462bfe6bbaee8b62f9b22523380f Mon Sep 17 00:00:00 2001 From: Doof Date: Wed, 6 May 2026 13:17:20 +0000 Subject: [PATCH 2/2] Release 0.66.8 --- RELEASE.rst | 5 +++++ main/settings.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/RELEASE.rst b/RELEASE.rst index dd165cf034..9cfc2aedbd 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,11 @@ Release Notes ============= +Version 0.66.8 +-------------- + +- fix the breadcrum on video collection page (#3304) + Version 0.66.7 (Released May 06, 2026) -------------- diff --git a/main/settings.py b/main/settings.py index a2f007ae2a..199ca38c40 100644 --- a/main/settings.py +++ b/main/settings.py @@ -35,7 +35,7 @@ from main.settings_pluggy import * # noqa: F403 from openapi.settings_spectacular import open_spectacular_settings -VERSION = "0.66.7" +VERSION = "0.66.8" log = logging.getLogger()