Skip to content

Commit

Permalink
fix isAutoRefresh boolean rename in Form.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrubinger committed Jan 13, 2023
1 parent fa67ab6 commit 11e805e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/og/editor/form.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
export let data;
export let loading = false;
export let autoRefresh = false;
export let isAutoRefresh = false;
let url;
$: {
Expand Down Expand Up @@ -55,7 +55,7 @@

<hr />
<label class="checkbox">
<input type="checkbox" bind:checked={autoRefresh} />
<input type="checkbox" bind:checked={isAutoRefresh} />
auto-refresh image (every 4 seconds)
</label>

Expand Down

1 comment on commit 11e805e

@vercel
Copy link

@vercel vercel bot commented on 11e805e Jan 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.