Skip to content

Commit

Permalink
fix: data type for input value
Browse files Browse the repository at this point in the history
  • Loading branch information
bassemsab committed Feb 23, 2024
1 parent 23dc079 commit 015110e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/input/src/Input.svelte
Expand Up @@ -8,7 +8,7 @@
export let ref: HTMLInputElement;
export let type = "text";
export let bordered = true;
export let value: any;
export let value = "";
let focused = false;
const handleKeyup = (e: KeyboardEvent) => {
Expand Down

0 comments on commit 015110e

Please sign in to comment.