feat(*): Hide notes if there are none

This commit is contained in:
Josh Creek
2024-07-12 14:38:30 +01:00
parent 0e3be214ba
commit 8d86d93bc0
@@ -49,7 +49,9 @@
{#if showForms} {#if showForms}
<p><strong>Can Gigantamax:</strong> {pokedexEntry.canGigantamax ? 'Yes' : 'No'}</p> <p><strong>Can Gigantamax:</strong> {pokedexEntry.canGigantamax ? 'Yes' : 'No'}</p>
{/if} {/if}
<p><strong>Notes:</strong> {pokedexEntry.notes}</p> {#if pokedexEntry.notes}
<p><strong>Notes:</strong> {pokedexEntry.notes}</p>
{/if}
</div> </div>
</div> </div>