Skip to content

Commit

Permalink
fix(dashboard): "clear all" selected validators
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidsowardx committed Jan 16, 2024
1 parent 168bcf1 commit 3736e7f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
You've selected {count}
{` ${count === 1 ? 'validator' : 'validators'}`}
</div>
<button on:click={() => dispatch('clear-all')}>Clear all</button>
{#if count > 0}
<button on:click={() => dispatch('clear-all')}>Clear all</button>
{/if}
</div>
<ButtonNew
on:click={() => {
Expand Down

0 comments on commit 3736e7f

Please sign in to comment.