Fix workflow actions not being selectable with arrow keys (#8576)

https://github.com/user-attachments/assets/c108b60b-030e-4eef-a30f-fab472ea60a9
This commit is contained in:
Raphaël Bosi 2024-11-19 16:01:28 +01:00 committed by GitHub
parent 1e55010e26
commit ac72f8a271
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -420,6 +420,7 @@ export const CommandMenu = () => {
const selectableItemIds = copilotCommands
.map((cmd) => cmd.id)
.concat(matchingStandardActionCommands.map((cmd) => cmd.id))
.concat(matchingWorkflowRunCommands.map((cmd) => cmd.id))
.concat(matchingCreateCommand.map((cmd) => cmd.id))
.concat(matchingNavigateCommand.map((cmd) => cmd.id))
.concat(people?.map((person) => person.id))