Skip to content

Commit

Permalink
fix: fix PWA forward/back/print buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreminger committed Mar 25, 2024
1 parent 4dde262 commit a0f7192
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2263,19 +2263,19 @@ Please include a link to this sheet in the email to assist in debugging the prob
<HeaderGlobalAction
class="standalone"
title="Go Back"
on:click={window.history.back}
on:click={() => window.history.back()}
icon={ArrowLeft}
/>
<HeaderGlobalAction
class="standalone"
title="Go Forward"
on:click={window.history.forward}
on:click={() => window.history.forward()}
icon={ArrowRight}
/>
<HeaderGlobalAction
class="standalone hide-when-narrow"
title="Print"
on:click={window.print}
on:click={() => window.print()}
icon={Printer}
/>

Expand Down

0 comments on commit a0f7192

Please sign in to comment.