We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a730fe4 commit c856f59Copy full SHA for c856f59
packages/store/docs/select-pattern.md
@@ -32,11 +32,11 @@ import { select } from 'ng2-redux';
32
pipes: [AsyncPipe],
33
selector: 'counter-value-printed-many-times',
34
template: `
35
- <p>{counter$ | async}</p>
36
- <p>{counter | async}</p>
37
- <p>{counterSelectedWithString | async}</p>
38
- <p>{counterSelectedWithFunction | async}</p>
39
- <p>{counterSelectedWithFunctionAndMultipliedByTwo | async}</p>
+ <p>{{counter$ | async}}</p>
+ <p>{{counter | async}}</p>
+ <p>{{counterSelectedWithString | async}}</p>
+ <p>{{counterSelectedWithFunction | async}}</p>
+ <p>{{counterSelectedWithFunctionAndMultipliedByTwo | async}}</p>
40
`
41
})
42
export class CounterValue {
0 commit comments