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 e0b89f6 commit 38f87e2Copy full SHA for 38f87e2
1 file changed
app/pages/package/[[org]]/[name].vue
@@ -729,6 +729,16 @@ onKeyStroke(
729
},
730
)
731
732
+onKeyStroke(
733
+ e => keyboardShortcuts.value && isKeyWithoutModifiers(e, 'f') && !isEditableElement(e.target),
734
+ e => {
735
+ if (!fundingUrl.value) return
736
+ e.preventDefault()
737
+ navigateTo(fundingUrl.value, { external: true, open: { target: '_blank' } })
738
+ },
739
+ { dedupe: true },
740
+)
741
+
742
const showSkeleton = shallowRef(false)
743
</script>
744
0 commit comments