Skip to content

Commit

Permalink
fix(infinite-list): fix example file path
Browse files Browse the repository at this point in the history
  • Loading branch information
nnixaa committed Aug 8, 2018
1 parent 0bcad95 commit 60d0d1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/playground/infinite-list/news.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class NewsService {
const startIndex = ((page - 1) % TOTAL_PAGES) * pageSize;

return this.http
.get<NewsPost[]>('/assets/data/news.json')
.get<NewsPost[]>('assets/data/news.json')
.pipe(
map(news => news.splice(startIndex, pageSize)),
delay(1500),
Expand Down

0 comments on commit 60d0d1e

Please sign in to comment.