Skip to content

Commit a1730db

Browse files
marcus13371337marjan-georgiev
authored andcommitted
Fix compile error when using TemplateTypeCheck set to true (swimlane#1520)
1 parent 4bcfe3f commit a1730db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/body/body-cell.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,8 @@ export class DataTableBodyCellComponent implements DoCheck, OnDestroy {
393393
return html.replace(/<\/?[^>]+(>|$)/g, '');
394394
}
395395

396-
onTreeAction(row: any) {
397-
this.treeAction.emit();
396+
onTreeAction() {
397+
this.treeAction.emit(this.row);
398398
}
399399

400400
calcLeftMargin(column: any, row: any) {

0 commit comments

Comments
 (0)