Skip to content

Commit

Permalink
Eternal typos killed
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph-Meyer committed Jan 9, 2019
1 parent fdb09d9 commit a05e1fd
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ export class AdminDeveloperCreateComponent implements OnInit {
constructor(
private dialogRef: MatDialogRef<AdminDeveloperComponent>,
private userService: UserService,
private avatarClassServoce: AvatarClassService,
private avatarRaceServoce: AvatarRaceService,
private avatarClassService: AvatarClassService,
private avatarRaceService: AvatarRaceService,
private roleService: RoleService,
@Inject(MAT_DIALOG_DATA) public users: User[]) {
}

ngOnInit() {
this.nameTaken = false;
this.avatarClassServoce.getClasses().then(classes => this.classes = classes);
this.avatarRaceServoce.getRaces().then(races => this.races = races);
this.avatarClassService.getClasses().then(classes => this.classes = classes);
this.avatarRaceService.getRaces().then(races => this.races = races);
this.roleService.getRoles().then(roles => this.roles = roles);
}

Expand Down

0 comments on commit a05e1fd

Please sign in to comment.