Merge pull request #9212 from Alchez/dev-kanban-missing-data
fix: missing column data for Kanban board (develop)
This commit is contained in:
commit
4d1733506a
1 changed files with 5 additions and 0 deletions
|
|
@ -108,6 +108,11 @@ frappe.views.KanbanView = class KanbanView extends frappe.views.ListView {
|
|||
});
|
||||
}
|
||||
|
||||
get_fields() {
|
||||
this.fields.push([this.board.field_name, this.board.reference_doctype]);
|
||||
return super.get_fields();
|
||||
}
|
||||
|
||||
render() {
|
||||
const board_name = this.board_name;
|
||||
if (this.kanban && board_name === this.kanban.board_name) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue