fix: missing column datafor Kanban board

This commit is contained in:
Rohan Bansal 2020-01-07 17:00:23 +05:30
parent e85c152d1c
commit ade6794b3e

View file

@ -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) {