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 ece3b66 commit 4fe4145Copy full SHA for 4fe4145
1 file changed
app/components/CopyToClipboardButton.vue
@@ -16,8 +16,12 @@ const props = defineProps<{
16
17
const buttonCopyText = computed(() => props.copyText || $t('common.copy'))
18
const buttonCopiedText = computed(() => props.copiedText || $t('common.copied'))
19
-const buttonAriaLabelCopy = computed(() => props.ariaLabelCopy || props.copyText || $t('common.copy'))
20
-const buttonAriaLabelCopied = computed(() => props.ariaLabelCopied || props.copiedText || $t('common.copied'))
+const buttonAriaLabelCopy = computed(
+ () => props.ariaLabelCopy || props.copyText || $t('common.copy'),
21
+)
22
+const buttonAriaLabelCopied = computed(
23
+ () => props.ariaLabelCopied || props.copiedText || $t('common.copied'),
24
25
26
const emit = defineEmits<{
27
click: []
0 commit comments