Skip to content

Commit

Permalink
fix(demo): minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimanoid committed Jan 17, 2020
1 parent 6e3d365 commit 1ef3550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/demo-app/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class AppComponent implements OnInit {
dndEnabled: boolean = true;
multiLineDnd: boolean = false;
evenRowDrop: boolean = false;
dropAllowedFn = (row: any) => !this.evenRowDrop || row[0] % 2;
dropAllowedFn = (row: any) => !this.evenRowDrop || !(row[0] % 2);

dragging: any;
dropped: any;
Expand Down

0 comments on commit 1ef3550

Please sign in to comment.