Skip to content

Commit

Permalink
fix tabindex being required
Browse files Browse the repository at this point in the history
  • Loading branch information
dhernandoatnewrelic committed Dec 22, 2023
1 parent 309b377 commit d6d8c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Cropper.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
export let zoomSpeed = 1
export let crossOrigin: HTMLImgAttributes['crossorigin'] = null
export let restrictPosition = true
export let tabindex: number | undefined
export let tabindex: number | undefined = undefined
let cropperSize: Size | null = null
let imageSize: ImageSize = { width: 0, height: 0, naturalWidth: 0, naturalHeight: 0 }
Expand Down

0 comments on commit d6d8c66

Please sign in to comment.