Commit 16fc63614f25008e1b60a6442c04b252491be41f

Authored by Sergio Crisostomo
1 parent cca3bcaa

stop propagation on ESC key

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
src/components/select/select.vue
... ... @@ -482,6 +482,7 @@
482 482  
483 483 // Esc slide-up
484 484 if (e.key === 'Escape') {
  485 + e.stopPropagation();
485 486 this.hideMenu();
486 487 }
487 488 // next
... ...