Skip to content

Commit 6de358b

Browse files
authored
feat: make test changes from a fork
1 parent ebcfc01 commit 6de358b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/app.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ useHead({
3838
'data-kbd-hints': () => showKbdHints.value,
3939
},
4040
titleTemplate: titleChunk => {
41-
return titleChunk ? titleChunk : 'npmx - Better npm Package Browser'
41+
return titleChunk ? titleChunk : 'hello from a fork'
4242
},
4343
meta: [{ name: 'color-scheme', content: colorScheme }],
4444
})
@@ -79,11 +79,11 @@ onKeyDown(
7979
)
8080
8181
onKeyDown(
82-
'?',
82+
'f',
8383
e => {
8484
if (!keyboardShortcuts.value || isEditableElement(e.target)) return
8585
e.preventDefault()
86-
showKbdHints.value = true
86+
window.alert("hello from a fork")
8787
},
8888
{ dedupe: true },
8989
)

0 commit comments

Comments
 (0)