Skip to content

Commit

Permalink
docs(component-store): fix movies$ observable assignment (#2587)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngfelixl authored Jun 17, 2020
1 parent 7128667 commit e3b178d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ngrx.io/content/guide/component-store/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ComponentStore can be initialized in 2 ways:
providers: [ComponentStore],
})
export class MoviesPageComponent {
movies$: this.componentStore.state$.pipe(
movies$ = this.componentStore.state$.pipe(
map(state => state.movies),
);

Expand Down

0 comments on commit e3b178d

Please sign in to comment.