Skip to content

Commit

Permalink
fix: include submitter with submission in submission index
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredgalanis committed Jun 28, 2024
1 parent ff8e92c commit 2920f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/util/paginated-query.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function submissionsIndexQuery(params, user) {
submission: `(${userMatch});submissionStatus=out=cancelled`,
},
sort: '-submittedDate',
include: ['publication', 'repositories'].join(','),
include: ['publication', 'repositories', 'submitter'].join(','),
};
}

Expand Down

0 comments on commit 2920f28

Please sign in to comment.