Ensure both label and value are set when defining custom options
This commit is contained in:
parent
e274eeffce
commit
e92455dc88
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
const saveFilter = async () => {
|
const saveFilter = async () => {
|
||||||
// Filter out null objects
|
// Filter out null objects
|
||||||
tempValue = tempValue.filter(optionValue => optionValue.value)
|
tempValue = tempValue.filter(option => option.value && option.label)
|
||||||
dispatch("change", tempValue)
|
dispatch("change", tempValue)
|
||||||
notifications.success("Options saved.")
|
notifications.success("Options saved.")
|
||||||
drawer.hide()
|
drawer.hide()
|
||||||
|
|
Loading…
Reference in New Issue