Skip to content

Commit

Permalink
fix build error in angular template
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmet-erim committed Apr 6, 2020
1 parent adfcdf0 commit 9c6a936
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions npm/ng-packs/packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"url": "https://github.com/abpframework/abp.git"
},
"dependencies": {
"@abp/utils": "~2.3.0",
"@angular/localize": "~9.0.2",
"@abp/utils": "^2.4.0",
"@angular/localize": "~9.1.0",
"@ngxs/router-plugin": "^3.6.2",
"@ngxs/storage-plugin": "^3.6.2",
"@ngxs/store": "^3.6.2",
"angular-oauth2-oidc": "^8.0.4",
"just-clone": "3.1.0",
"just-clone": "^3.1.0",
"just-compare": "^1.3.0",
"snq": "^1.0.3",
"ts-toolbelt": "^6.3.6"
Expand Down
6 changes: 3 additions & 3 deletions templates/app/angular/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { forkJoin } from 'rxjs';
template: `
<abp-loader-bar></abp-loader-bar>
<router-outlet></router-outlet>
`
`,
})
export class AppComponent implements OnInit {
constructor(private lazyLoadService: LazyLoadService) {}
Expand All @@ -16,10 +16,10 @@ export class AppComponent implements OnInit {
forkJoin(
this.lazyLoadService.load(
LOADING_STRATEGY.PrependAnonymousStyleToHead('fontawesome-v4-shims.min.css')
)
),
this.lazyLoadService.load(
LOADING_STRATEGY.PrependAnonymousStyleToHead('fontawesome-all.min.css')
),
)
).subscribe();
}
}

0 comments on commit 9c6a936

Please sign in to comment.