@@ -574,12 +574,12 @@ class SQLMapGenerator {
574
574
const copyBtn = document . getElementById ( 'copyBtn' ) ;
575
575
const copyText = document . getElementById ( 'copyText' ) ;
576
576
const txt_command_copy_clipboard = 'COPY COMMAND TO CLIPBOARD' ;
577
- const txt_command_copy_coppied = 'COMMAND COPIED!' ;
577
+ const txt_command_copy_copied = 'COMMAND COPIED!' ;
578
578
579
579
try {
580
580
await navigator . clipboard . writeText ( command ) ;
581
581
copyBtn . classList . add ( 'copying' ) ;
582
- copyText . textContent = txt_command_copy_coppied ;
582
+ copyText . textContent = txt_command_copy_copied ;
583
583
584
584
setTimeout ( ( ) => {
585
585
copyBtn . classList . remove ( 'copying' ) ;
@@ -594,7 +594,7 @@ class SQLMapGenerator {
594
594
document . execCommand ( 'copy' ) ;
595
595
document . body . removeChild ( textArea ) ;
596
596
597
- copyText . textContent = txt_command_copy_coppied ;
597
+ copyText . textContent = txt_command_copy_copied ;
598
598
setTimeout ( ( ) => {
599
599
copyText . textContent = txt_command_copy_clipboard ;
600
600
} , 3000 ) ;
@@ -607,12 +607,12 @@ class SQLMapGenerator {
607
607
const copyUrlBtn = document . getElementById ( 'copyUrlBtn' ) ;
608
608
const copyUrlText = document . getElementById ( 'copyUrlText' ) ;
609
609
const txt_command_url_clipboard = 'COPY CONFIG URL' ;
610
- const txt_command_url_coppied = 'URL COPIED!' ;
610
+ const txt_command_url_copied = 'URL COPIED!' ;
611
611
612
612
try {
613
613
await navigator . clipboard . writeText ( command ) ;
614
614
copyUrlBtn . classList . add ( 'copying' ) ;
615
- copyUrlText . textContent = txt_command_url_coppied ;
615
+ copyUrlText . textContent = txt_command_url_copied ;
616
616
617
617
setTimeout ( ( ) => {
618
618
copyUrlBtn . classList . remove ( 'copying' ) ;
@@ -629,7 +629,7 @@ class SQLMapGenerator {
629
629
document . execCommand ( 'copy' ) ;
630
630
document . body . removeChild ( textArea ) ;
631
631
632
- copyUrlText . textContent = txt_command_url_coppied ;
632
+ copyUrlText . textContent = txt_command_url_copied ;
633
633
setTimeout ( ( ) => {
634
634
copyUrlText . textContent = txt_command_url_clipboard ;
635
635
} , 3000 ) ;
0 commit comments