Skip to content

Commit

Permalink
chore: close notification by clicking on the outside of it
Browse files Browse the repository at this point in the history
  • Loading branch information
grdddj committed Sep 9, 2024
1 parent 8f87dd4 commit 5acf3fa
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/dashboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
v-if="notifications.showPopup"
id="notifications-popup"
class="popup"
@click="notifications.showPopup = false"
>
<div
:class="[
Expand All @@ -20,6 +21,7 @@
{'red-border': notifications.isError},
{'green-border': !notifications.isError}
]"
@click.stop
>
<span
class="close-button"
Expand Down Expand Up @@ -235,7 +237,7 @@ <h3>Emulator commands</h3>
<button @click="emulatorResetDeviceShamir();">
Reset with Shamir
</button>

</div>
<div>
<button @click="readAndConfirmMnemonic();">
Expand Down Expand Up @@ -271,9 +273,9 @@ <h3>Emulator commands</h3>
Read and confirm mnemonic Shamir
</button>
</div>

</section>

<section>
<h3>Regtest</h3>

Expand Down

0 comments on commit 5acf3fa

Please sign in to comment.