Skip to content

Commit

Permalink
Fixed #6164
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici authored and Çağatay Çivici committed Jul 26, 2018
1 parent 3d26826 commit aaefeea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/components/treetable/treetable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2082,11 +2082,11 @@ export class TTHeaderCheckbox {
})
export class TTEditableColumn implements AfterViewInit {

@Input("pEditableColumn") data: any;
@Input("ttEditableColumn") data: any;

@Input("pEditableColumnField") field: any;
@Input("ttEditableColumnField") field: any;

@Input() pEditableColumnDisabled: boolean;
@Input() ttEditableColumnDisabled: boolean;

constructor(public tt: TreeTable, public el: ElementRef, public domHandler: DomHandler, public zone: NgZone) {}

Expand Down Expand Up @@ -2249,7 +2249,7 @@ export class TTEditableColumn implements AfterViewInit {
}

isEnabled() {
return this.pEditableColumnDisabled !== true;
return this.ttEditableColumnDisabled !== true;
}

}
Expand Down

0 comments on commit aaefeea

Please sign in to comment.