Skip to content

Commit 4fe4145

Browse files
[autofix.ci] apply automated fixes
1 parent ece3b66 commit 4fe4145

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

app/components/CopyToClipboardButton.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ const props = defineProps<{
1616
1717
const buttonCopyText = computed(() => props.copyText || $t('common.copy'))
1818
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'))
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
2226
const emit = defineEmits<{
2327
click: []

0 commit comments

Comments
 (0)