Skip to content

Commit

Permalink
run format all
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbitronics committed Mar 21, 2024
1 parent b53b458 commit 327d669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/mdc/Select/Select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $: dispatch('change', options[selectedIndex] || {})
$: mdcSelect.disabled = disabled
$: if (options && mdcSelect.layoutOptions) mdcSelect.layoutOptions()
const getIDsCSV = (options) => options.map(option => option.id).join(',')
const getIDsCSV = (options) => options.map((option) => option.id).join(',')
const optionsHaveChanged = (options) => previousOptionsIDsCSV !== getIDsCSV(options)
Expand Down

0 comments on commit 327d669

Please sign in to comment.