We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebcfc01 commit 6de358bCopy full SHA for 6de358b
1 file changed
app/app.vue
@@ -38,7 +38,7 @@ useHead({
38
'data-kbd-hints': () => showKbdHints.value,
39
},
40
titleTemplate: titleChunk => {
41
- return titleChunk ? titleChunk : 'npmx - Better npm Package Browser'
+ return titleChunk ? titleChunk : 'hello from a fork'
42
43
meta: [{ name: 'color-scheme', content: colorScheme }],
44
})
@@ -79,11 +79,11 @@ onKeyDown(
79
)
80
81
onKeyDown(
82
- '?',
+ 'f',
83
e => {
84
if (!keyboardShortcuts.value || isEditableElement(e.target)) return
85
e.preventDefault()
86
- showKbdHints.value = true
+ window.alert("hello from a fork")
87
88
{ dedupe: true },
89
0 commit comments