(kind, selectId)
| 84 | initState(); |
| 85 | window.multiFilterChips[kind] = []; |
| 86 | renderChips(kind); |
| 87 | } |
| 88 | |
| 89 | function clearAllMultiChips() { |
| 90 | MULTI_KEYS.forEach(clearChipsKind); |
| 91 | } |
| 92 | |
| 93 | function effectiveScalarValues(kind, selectId) { |
| 94 | initState(); |
| 95 | const chips = window.multiFilterChips[kind] || []; |
| 96 | if (chips.length) { |
| 97 | return { values: chips.slice(), combine: getCombine(kind) }; |
| 98 | } |
| 99 | const sel = document.getElementById(selectId); |
no test coverage detected