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 637d3db commit c799c50Copy full SHA for c799c50
1 file changed
packages/core/src/client/webcomponents/components/command-palette/KeybindingBadge.vue
@@ -1,11 +1,12 @@
1
<script setup lang="ts">
2
+import { computed } from 'vue'
3
import { formatKeybinding } from '../../state/keybindings'
4
5
const props = defineProps<{
6
keyString: string
7
}>()
8
-const keys = formatKeybinding(props.keyString)
9
+const keys = computed(() => formatKeybinding(props.keyString))
10
</script>
11
12
<template>
0 commit comments