Kanban ยท console.warn
board.filters.where("{name}", fn) needs a function; the predicate was not registered. Pass null to remove a registered predicate.
Printed by Kanban, prefixed [lattice], since 1.57.0.
Warnings reference › kanban.filters.where.fn:*
- Identifier
kanban.filters.where.fn:*- Raised by
- Kanban
- Since
- 1.57.0
What happened
The value passed alongside the name was neither a function nor null. Nothing was registered under that name, and any predicate already registered under it is still in force - the call did not replace it.
The fix
Pass a (row, card) => boolean function, or null to remove the predicate registered under that name.
The smallest fix
board.filters.where('mine', null); // remove
Reference
Covered in full at the API reference.