Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Commit

Permalink
fix: added forgotten ;
Browse files Browse the repository at this point in the history
  • Loading branch information
kickermeister authored and Florian-Schoenherr committed Mar 1, 2021
1 parent b1215b4 commit ddba141
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
export let closeOnClick = !multiple;
export let format = (val) => (Array.isArray(val) ? val.join(', ') : val);
const dispatch = createEventDispatcher();
$: dispatch('change', value)
$: dispatch('change', value);
</script>

<style lang="scss" src="./Select.scss" global>
Expand Down

1 comment on commit ddba141

@vercel
Copy link

@vercel vercel bot commented on ddba141 Mar 1, 2021

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.