[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: for `?` allow access with modifiers (#809)

Co-authored-by: Daniel Roe <daniel@roe.dev>

authored by

Jens Rømer Hesselbjerg
Daniel Roe
and committed by
GitHub
7c18e8f4 431c2c76

+2 -1
+2 -1
app/app.vue
··· 69 69 router.push('/search') 70 70 } 71 71 72 - if (isKeyWithoutModifiers(e, '?')) { 72 + // For "?" we check the key property directly since it's usually combined with shift 73 + if (e.key === '?') { 73 74 e.preventDefault() 74 75 showKbdHints.value = true 75 76 }