1
0
Fork 0
mirror of synced 2024-10-01 17:47:46 +13: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 d71b7e4b77
commit bc788273a0

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()