Skip to content

Commit

Permalink
set default value to silence warning, fix #61
Browse files Browse the repository at this point in the history
  • Loading branch information
mskocik committed Oct 1, 2022
1 parent 2d7f026 commit 70768e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/SveltyPicker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/** @type {boolean} */
export let required = false;
/** @type {HTMLInputElement|null} */
export let inputElement;
export let inputElement = null;
/** @type {string|null} */
export let value = null;
/** @type {Date|null} */
Expand Down

0 comments on commit 70768e4

Please sign in to comment.