Hi
I’m having some issues updating cards in a kanban. I believe 2 of the problems may be bugs.
Firstly, data passed to updateItem requires “tags” and “tags” cannot be null. But creating items does not have this limitation.
Secondly, I have a custom columnRenderer: for column headings that indicates the number of items in each column. When I run updateItem, that column is incremented by 1. No extra cards appear, but the column is under the impression that another item has been added.
Lastly, I have an itemRenderer: function, but it does not appear to be triggered by updateItem. Do I have to do this manually?
The reason for this is additional information I display on cards. If an item is updated, I’d like the card to reflect those changes on those custom properties. I thought updateItem would go through all object keys and update all object values.