web/DonateShareCard: fix unrelated buttons triggering the copy anim
This commit is contained in:
parent
e4ec468f60
commit
e7386234bc
1 changed files with 2 additions and 8 deletions
|
@ -64,10 +64,7 @@
|
||||||
<button
|
<button
|
||||||
id="action-button-github"
|
id="action-button-github"
|
||||||
class="action-button"
|
class="action-button"
|
||||||
on:click={async () => {
|
on:click={async () => openURL(contacts.github)}
|
||||||
openURL(contacts.github);
|
|
||||||
copied = true;
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<div class="action-button-icon">
|
<div class="action-button-icon">
|
||||||
<IconBrandGithub />
|
<IconBrandGithub />
|
||||||
|
@ -78,10 +75,7 @@
|
||||||
<button
|
<button
|
||||||
id="action-button-twitter"
|
id="action-button-twitter"
|
||||||
class="action-button"
|
class="action-button"
|
||||||
on:click={async () => {
|
on:click={async () => openURL(contacts.twitter)}
|
||||||
openURL(contacts.twitter);
|
|
||||||
copied = true;
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<div class="action-button-icon">
|
<div class="action-button-icon">
|
||||||
<IconBrandTwitter />
|
<IconBrandTwitter />
|
||||||
|
|
Loading…
Reference in a new issue