Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
ERROR in src/app/homepage/pages/advanced/hierarchical-injector/hierarchical-injector.component.ts(7,3): error TS1005: ',' expected.
  • Loading branch information
dennis-zent authored Feb 28, 2018
1 parent 04e2b8e commit 88ba937
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { BasePageComponent } from '../../page/page.component';

@Component({
selector: 'app-hierarchical-injector',
templateUrl: './hierarchical-injector.component.html'
templateUrl: './hierarchical-injector.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
})
export class HierarchicalInjectorComponent extends BasePageComponent {
Expand Down Expand Up @@ -62,4 +62,4 @@ export class CommonService {
}
}`;
}
}
}

0 comments on commit 88ba937

Please sign in to comment.