From a9cb035f41b7a6b132c8ba355f1fbb567e6bec56 Mon Sep 17 00:00:00 2001 From: Maribeth Moffatt Date: Thu, 4 Dec 2025 15:25:32 -0500 Subject: [PATCH 1/2] chore: Update CODEOWNERS to point to RPF group (#9510) * chore: Update CODEOWNERS * Update CODEOWNERS * chore: Update CODEOWNERS --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d52d27df1..5afad8703 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @google/blockly-eng \ No newline at end of file +* @RaspberryPiFoundation/blockly-collaborators From 8a226d87375a27c14b6806908fde8b2a556a2899 Mon Sep 17 00:00:00 2001 From: Robert Knight <95928279+microbit-robert@users.noreply.github.com> Date: Thu, 4 Dec 2025 20:37:44 +0000 Subject: [PATCH 2/2] fix: navigation in dropdown menu with a separator (#9474) --- core/menu.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/menu.ts b/core/menu.ts index 13fd0866f..a064489ba 100644 --- a/core/menu.ts +++ b/core/menu.ts @@ -274,7 +274,7 @@ export class Menu { */ highlightNext() { const index = this.highlightedItem - ? this.menuItems.indexOf(this.highlightedItem) + ? this.getMenuItems().indexOf(this.highlightedItem) : -1; this.highlightHelper(index, 1); } @@ -287,7 +287,7 @@ export class Menu { */ highlightPrevious() { const index = this.highlightedItem - ? this.menuItems.indexOf(this.highlightedItem) + ? this.getMenuItems().indexOf(this.highlightedItem) : -1; this.highlightHelper(index < 0 ? this.menuItems.length : index, -1); }