Update more option picker logic to only hide nullish rather than falsey values when using a dynamic options source
This commit is contained in:
parent
9535bc7c24
commit
1d38486bb7
|
@ -30,7 +30,7 @@ export const getOptions = (
|
|||
let optionsSet = {}
|
||||
dataProvider?.rows?.forEach(row => {
|
||||
const value = row?.[valueColumn]
|
||||
if (value) {
|
||||
if (value != null) {
|
||||
const label = row[labelColumn] || value
|
||||
optionsSet[value] = { value, label }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue