1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00

Ensure both label and value are set when defining custom options

This commit is contained in:
Andrew Kingston 2021-08-17 11:34:46 +01:00
parent e274eeffce
commit e92455dc88

View file

@ -12,7 +12,7 @@
const saveFilter = async () => {
// Filter out null objects
tempValue = tempValue.filter(optionValue => optionValue.value)
tempValue = tempValue.filter(option => option.value && option.label)
dispatch("change", tempValue)
notifications.success("Options saved.")
drawer.hide()