Skip to content

Commit

Permalink
fix: type of zindex prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakeii committed May 3, 2024
1 parent 515cee7 commit 3e34f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Popdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export let showContent = false;
export let calcLeft: null | CalcPosition = null;
export let calcTop: null | CalcPosition = null;
export let zIndex = null;
export let zIndex: null | number = null;
let trigger: Writable<HTMLElement> = writable();
let windowSize: Writable<number[]> = writable();
Expand Down

0 comments on commit 3e34f26

Please sign in to comment.