Skip to content

Commit

Permalink
Merge pull request #136 from ptvrajsk/InstancingChanges
Browse files Browse the repository at this point in the history
Fix Build Issues
  • Loading branch information
KevinCJH committed Jul 22, 2019
2 parents 4501961 + dac6035 commit c75d830
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/shared/issue-tables/issue-tables.component.ts
Expand Up @@ -50,9 +50,9 @@ export class IssueTablesComponent implements OnInit {
issuesPendingDeletion: {[id: number]: boolean};
private readonly action_buttons = ACTION_BUTTONS;

constructor(private permissions: PermissionService,
constructor(public userService: UserService,
private permissions: PermissionService,
private labelService: LabelService,
private userService: UserService,
private githubService: GithubService,
private issueService: IssueService,
private errorHandlingService: ErrorHandlingService) { }
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/label-dropdown/label-dropdown.component.ts
Expand Up @@ -17,7 +17,7 @@ export class LabelDropdownComponent implements OnInit {
selectedColor: string;
labelList: Label[];

constructor(private labelService: LabelService) { }
constructor(public labelService: LabelService) { }

ngOnInit() {
this.selectedColor = this.labelService.getColorOfLabel(this.initialValue);
Expand Down
4 changes: 2 additions & 2 deletions src/app/shared/view-issue/view-issue.component.ts
Expand Up @@ -45,8 +45,8 @@ export class ViewIssueComponent implements OnInit, OnDestroy {
@Input() issueId: number;
@Input() issueComponents: ISSUE_COMPONENTS[];

private readonly issueComponentsEnum = ISSUE_COMPONENTS;
private readonly userRole = UserRole;
public readonly issueComponentsEnum = ISSUE_COMPONENTS;
public readonly userRole = UserRole;

constructor(private issueCommentService: IssueCommentService,
private route: ActivatedRoute,
Expand Down

0 comments on commit c75d830

Please sign in to comment.