We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f82e91 commit d3d6ba8Copy full SHA for d3d6ba8
arduino-ide-extension/src/browser/contributions/board-selection.ts
@@ -185,7 +185,9 @@ PID: ${PID}`;
185
// Platform submenu
186
const platformMenuPath = [...boardsPackagesGroup, packageId];
187
// Note: Registering the same submenu twice is a noop. No need to group the boards per platform.
188
- this.menuModelRegistry.registerSubmenu(platformMenuPath, packageLabel);
+ this.menuModelRegistry.registerSubmenu(platformMenuPath, packageLabel, {
189
+ order: packageName.toLowerCase(),
190
+ });
191
192
const id = `arduino-select-board--${fqbn}`;
193
const command = { id };
0 commit comments