Update option picker logic to only hide nullish rather than falsey values when using a dynamic options source

This commit is contained in:
Andrew Kingston 2022-03-01 09:51:48 +00:00
parent 93eb042c4e
commit b738fcf030
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export const getOptions = (
dataProvider?.rows?.forEach(row => {
const value = row?.[valueColumn]
if (value) {
if (value != null) {
const label = row[labelColumn] || value
optionsSet[value] = { value, label }
}