Skip to content

Commit 9560f7d

Browse files
committed
Merge branch 'adlius/hotfix-query-param'
2 parents d48b5eb + f1bc926 commit 9560f7d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

app/guid-node/registrations/controller.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@ export default class GuidNodeRegistrations extends Controller {
3939
getRegistrationSchemas = task(function *(this: GuidNodeRegistrations) {
4040
let schemas = yield this.store.query('registration-schema',
4141
{
42-
adapterOptions: {
43-
query: {
44-
'filter[active]': true,
45-
},
46-
},
42+
'filter[active]': true,
4743
});
4844
schemas = schemas.toArray();
4945
schemas.sort((a: RegistrationSchema, b: RegistrationSchema) => a.name.length - b.name.length);

0 commit comments

Comments
 (0)