How to add new fields on the kanban board on UI Builder?SummaryWorking with kanban board on UI Builder, We want to know how to show some additional fields in the card?ReleaseGenericInstructionsBe sure the card define has options: { "board_type": "FREEFORM", "card_type": "classic", "show_card_info": "true", }, and on the record, be sure the field to be displayed has record: { _name_of_the_field_: { display_value: _value_, label: "_Label", name: "_name_of_the_field_"}, } Example: record: { priority: { display_value: incident.priority.displayValue, label: "Priority", name: "priority"}, )