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:
176176** in a template**
177177
178178``` hbs
179- {{#let (query 'blog' query= (hash ...)) as |blogs|}}
179+ {{#let (query 'blog' (hash ...)) as |blogs|}}
180180 {{#if blogs.isLoading}}
181181 ...
182182 {{else if blogs.isError}}
@@ -206,7 +206,7 @@ See: [First-class Component Templates](https://github.com/emberjs/rfcs/pull/779)
206206import { Query } from ' ember-data-resources' ;
207207
208208< template>
209- {{#let (Query ' blog' query = (hash ... )) as | blogs| }}
209+ {{#let (Query ' blog' (hash ... )) as | blogs| }}
210210 ...
211211 {{/ let }}
212212< / template>
@@ -242,7 +242,7 @@ Available methods:
242242** in a template**
243243
244244``` hbs
245- {{#let (query-record 'blog' query= (hash ...)) as |blog|}}
245+ {{#let (query-record 'blog' (hash ...)) as |blog|}}
246246 {{#if blog.isLoading}}
247247 ...
248248 {{else if blog.isError}}
@@ -273,7 +273,7 @@ See: [First-class Component Templates](https://github.com/emberjs/rfcs/pull/779)
273273import { QueryRecord } from ' ember-data-resources' ;
274274
275275< template>
276- {{#let (QueryRecord ' blog' query = (hash ... )) as | blog| }}
276+ {{#let (QueryRecord ' blog' (hash ... )) as | blog| }}
277277 ...
278278 {{/ let }}
279279< / template>
You can’t perform that action at this time.
0 commit comments