(kind)
| 74 | } |
| 75 | |
| 76 | function removeChip(kind, raw) { |
| 77 | initState(); |
| 78 | const v = String(raw); |
| 79 | window.multiFilterChips[kind] = (window.multiFilterChips[kind] || []).filter((x) => x !== v); |
| 80 | renderChips(kind); |
| 81 | } |
| 82 | |
| 83 | function clearChipsKind(kind) { |
nothing calls this directly
no test coverage detected