File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ Available methods:
176
176
** in a template**
177
177
178
178
``` hbs
179
- {{#let (query 'blog' query= (hash ...)) as |blogs|}}
179
+ {{#let (query 'blog' (hash ...)) as |blogs|}}
180
180
{{#if blogs.isLoading}}
181
181
...
182
182
{{else if blogs.isError}}
@@ -206,7 +206,7 @@ See: [First-class Component Templates](https://github.com/emberjs/rfcs/pull/779)
206
206
import { Query } from ' ember-data-resources' ;
207
207
208
208
< template>
209
- {{#let (Query ' blog' query = (hash ... )) as | blogs| }}
209
+ {{#let (Query ' blog' (hash ... )) as | blogs| }}
210
210
...
211
211
{{/ let }}
212
212
< / template>
@@ -242,7 +242,7 @@ Available methods:
242
242
** in a template**
243
243
244
244
``` hbs
245
- {{#let (query-record 'blog' query= (hash ...)) as |blog|}}
245
+ {{#let (query-record 'blog' (hash ...)) as |blog|}}
246
246
{{#if blog.isLoading}}
247
247
...
248
248
{{else if blog.isError}}
@@ -273,7 +273,7 @@ See: [First-class Component Templates](https://github.com/emberjs/rfcs/pull/779)
273
273
import { QueryRecord } from ' ember-data-resources' ;
274
274
275
275
< template>
276
- {{#let (QueryRecord ' blog' query = (hash ... )) as | blog| }}
276
+ {{#let (QueryRecord ' blog' (hash ... )) as | blog| }}
277
277
...
278
278
{{/ let }}
279
279
< / template>
You can’t perform that action at this time.
0 commit comments