From 1caf4ba43a726dd9cc991c19ca2badf46933400e Mon Sep 17 00:00:00 2001 From: Shaun Kaasten <900809+skaasten@users.noreply.github.com> Date: Fri, 22 May 2026 14:43:16 -0400 Subject: [PATCH] fix(dashboards): anchor Editors dropdown to the right edge of the trigger MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Editors dropdown on the dashboards page is rendered with the default `bottom-start` placement, which anchors its left edge to the trigger. Because the trigger sits in the top-right of the dashboard header and the menu can grow wider than the space remaining to the right (long team names), the menu — and its Cancel/Apply footer — ended up extending past the viewport's right edge, making it impossible to save edit-access changes. Switch the placement to `bottom-end` so the menu anchors to the trigger's right edge and grows leftward into available space. Refs DAIN-1677 --- static/app/views/dashboards/editAccessSelector.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/static/app/views/dashboards/editAccessSelector.tsx b/static/app/views/dashboards/editAccessSelector.tsx index 214e40fcc50e4f..44695afbb6f4be 100644 --- a/static/app/views/dashboards/editAccessSelector.tsx +++ b/static/app/views/dashboards/editAccessSelector.tsx @@ -361,6 +361,7 @@ export function EditAccessSelector({ /> } + position="bottom-end" strategy="fixed" preventOverflowOptions={{mainAxis: false}} disabled={disabled}