Small typo fix on falback copy to clipboard function.
This commit is contained in:
parent
7f1035adc1
commit
268accc64a
|
@ -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'),
|
||||
|
|
Loading…
Reference in New Issue