Small typo fix on falback copy to clipboard function.

This commit is contained in:
mateuswetah 2020-06-16 11:17:13 -03:00
parent 7f1035adc1
commit 268accc64a
1 changed files with 1 additions and 1 deletions

View File

@ -418,7 +418,7 @@ export default {
let successful = document.execCommand('copy');
let msg = successful ? 'successful' : 'unsuccessful';
this.$console.log('Fallback: Copying text command was ' + msg);
if (msg == 'sucessful') {
if (msg == 'successful') {
this.$buefy.toast.open({
duration: 3000,
message: this.$i18n.get('info_url_copied'),