File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,12 @@ const props = defineProps<{
1616
1717const buttonCopyText = computed (() => props .copyText || $t (' common.copy' ))
1818const 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' ))
19+ const buttonAriaLabelCopy = computed (
20+ () => props .ariaLabelCopy || props .copyText || $t (' common.copy' ),
21+ )
22+ const buttonAriaLabelCopied = computed (
23+ () => props .ariaLabelCopied || props .copiedText || $t (' common.copied' ),
24+ )
2125
2226const emit = defineEmits <{
2327 click: []
You can’t perform that action at this time.
0 commit comments