From 3802e490054a34b0c0c8812d1a5a3ccf762e8362 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Tue, 28 Apr 2026 19:32:00 -0400 Subject: [PATCH] fix: place desktop bell before the secondary-nav cluster MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit INSERT_BEFORE the desktopSecondaryLinks widget rather than the auth menu so the bell renders to the left of any secondary nav links (e.g. the help button from frontend-base#245) instead of between those links and the user avatar dropdown. Mobile is left as-is — mobileRight has no secondary-nav cluster to position relative to (just bell + auth menu), so INSERT_BEFORE the mobile auth menu remains correct. Refs openedx/frontend-base#245 Co-Authored-By: Claude Opus 4.7 (1M context) --- src/slots.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slots.tsx b/src/slots.tsx index c9aa718..6ceee7d 100644 --- a/src/slots.tsx +++ b/src/slots.tsx @@ -7,7 +7,7 @@ const slots: SlotOperation[] = [ slotId: 'org.openedx.frontend.slot.header.desktopRight.v1', id: `${appId}.widget.notificationsBell.desktop.v1`, op: WidgetOperationTypes.INSERT_BEFORE, - relatedId: 'org.openedx.frontend.widget.header.desktopAuthenticatedMenu.v1', + relatedId: 'org.openedx.frontend.widget.header.desktopSecondaryLinks.v1', element: , condition: { authenticated: true }, },