Improve multiselect determintation of pretty labels

This commit is contained in:
Andrew Kingston 2021-04-16 11:32:05 +01:00
parent 3627cd38e1
commit 84da746bb7
1 changed files with 7 additions and 3 deletions

View File

@ -20,7 +20,10 @@
const getFieldText = (value, map, placeholder) => { const getFieldText = (value, map, placeholder) => {
if (value?.length) { if (value?.length) {
const vals = value.map(option => map[option] || "").join(", ") if (!map) {
return ""
}
const vals = value.map(option => map[option] || option).join(", ")
return `(${value.length}) ${vals}` return `(${value.length}) ${vals}`
} else { } else {
return placeholder || "Choose some options" return placeholder || "Choose some options"
@ -40,8 +43,9 @@
} }
const getOptionLookupMap = options => { const getOptionLookupMap = options => {
let map = {} let map = null
if (options) { if (options?.length) {
map = {}
options.forEach(option => { options.forEach(option => {
const optionValue = getOptionValue(option) const optionValue = getOptionValue(option)
if (optionValue != null) { if (optionValue != null) {