Fix: Add ESC key handling to listBox in ServicePickerModal

This commit is contained in:
Lilith 2026-01-20 02:37:40 -08:00
parent d04b1276af
commit 0dededa452

View file

@ -205,6 +205,11 @@ export class ServicePickerModal {
this.handleSelect()
})
// ESC in list - close modal
this.listBox.key(['escape', 'q'], () => {
this.hide()
})
// Back to search
this.listBox.key(['/', 'i'], () => {
this.searchBox.focus()