Skip to content

Commit 378c965

Browse files
fix: Show all sponsors on sponsors edit page
1 parent a5104cc commit 378c965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/routes/events/view/edit/sponsors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default class SponsorsRoute extends Route.extend(EventWizardMixin) {
1010

1111
async model() {
1212
const data = this.modelFor('events.view.edit');
13-
const sponsors = await data.event.get('sponsors');
13+
const sponsors = await data.event.query('sponsors', { 'page[size]': 0 });
1414
return {
1515
sponsors,
1616
...data

0 commit comments

Comments
 (0)