Skip to content

Commit

Permalink
Constructors and drivers component fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fattazzo committed Dec 5, 2018
1 parent 3e7f134 commit 716d3b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ConstructorsService } from '../../../services/constructors.service';
export class ConstructorsSelectionComponent implements OnInit {
private season_ = '';

private constructors: Constructor[] = [];
constructors: Constructor[] = [];

selectedConstructors: Constructor[] = [];
@Output() selectedConstructorsChange: EventEmitter<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { SelectItem } from 'primeng/components/common/selectitem';
export class DriversSelectionComponent implements OnInit {
private season_ = '';

private drivers: SelectItem[] = [];
drivers: SelectItem[] = [];

selectedDrivers: Driver[] = [];
@Output() selectedDriversChange: EventEmitter<Driver[]> = new EventEmitter();
Expand Down

0 comments on commit 716d3b0

Please sign in to comment.