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

Commit ddba141

Browse files
kickermeisterFlorian-Schoenherr
authored andcommitted
fix: added forgotten ;
1 parent b1215b4 commit ddba141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte-materialify/src/components/Select/Select.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
export let closeOnClick = !multiple;
2828
export let format = (val) => (Array.isArray(val) ? val.join(', ') : val);
2929
const dispatch = createEventDispatcher();
30-
$: dispatch('change', value)
30+
$: dispatch('change', value);
3131
</script>
3232

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

0 commit comments

Comments
 (0)