Skip to content

Commit

Permalink
fix: interchange names of Going out and Coming in buttons in scan page
Browse files Browse the repository at this point in the history
  • Loading branch information
prathwik0 authored Nov 24, 2023
1 parent b31897b commit e396bee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/admin/snh2023scan/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@
on:click={() => {
status = 'outside';
}}
><MainButton><div class="w-20 p-0">Going Out</div></MainButton>
><MainButton><div class="w-20 p-0">Coming In</div></MainButton>
</button>
{:else}
<button
on:click={() => {
status = 'inside';
}}
>
<MainButton><div class="w-20 p-0">Coming In</div></MainButton>
<MainButton><div class="w-20 p-0">Going Out</div></MainButton>
</button>
{/if}
</div>
Expand Down

0 comments on commit e396bee

Please sign in to comment.