Kanban ยท console.warn
rows.apply on a grid-bound board is ignored; route to the bound grid instead.
Printed by Kanban, prefixed [lattice], since 1.34.0.
Warnings reference › kanban:apply-gridbound
- Identifier
kanban:apply-gridbound- Raised by
- Kanban
- Since
- 1.34.0
What happened
apply() was called on a board created with a grid. A grid-bound board takes its rows from that grid, so accepting a diff here would give it a second source of truth; the diff was dropped and the board still shows the grid's rows.
The fix
Apply the diff to the grid and the board follows it, or create the board without grid if it is to be driven directly.
The smallest fix
grid.rows.apply({ add, update, remove }); // the board follows
Reference
Covered in full at the API reference.