We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b53b458 commit 327d669Copy full SHA for 327d669
components/mdc/Select/Select.svelte
@@ -28,7 +28,7 @@ $: dispatch('change', options[selectedIndex] || {})
28
$: mdcSelect.disabled = disabled
29
$: if (options && mdcSelect.layoutOptions) mdcSelect.layoutOptions()
30
31
-const getIDsCSV = (options) => options.map(option => option.id).join(',')
+const getIDsCSV = (options) => options.map((option) => option.id).join(',')
32
33
const optionsHaveChanged = (options) => previousOptionsIDsCSV !== getIDsCSV(options)
34
0 commit comments