Add a title parameter to the CopyButton component

This commit is contained in:
Bubka 2024-02-26 08:37:30 +01:00
parent 21fa77f348
commit bfa1cc99c3
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
</script>
<template>
<button :aria-label="$t('commons.copy_to_clipboard')" class="button is-like-text is-pulled-right is-small is-text" @click.stop="copyToClipboard()">
<button :aria-label="$t('commons.copy_to_clipboard')" :title="$t('commons.copy_to_clipboard')" class="button is-like-text is-pulled-right is-small is-text" @click.stop="copyToClipboard()">
<FontAwesomeIcon :icon="['fas', 'copy']" />
</button>
</template>